• This project
    • Loading...
  • Sign in

I_Jemin / Node-Study

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Node-Study
  • logger.js
  • I_Jemin's avatar
    Check wrapper function input · b2a99c86
    b2a99c86 Browse Files
    I_Jemin authored 2018-03-20 07:15:49 +0900
logger.js 190 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
console.log(__filename);
console.log(__dirname);

var url = 'http://mylogger.io/log';

function log(message) {
    // Send an HTTP request
    console.log(message);
}

module.exports = log;