diff options
-rwxr-xr-x | api/index.js | 4 | ||||
-rw-r--r-- | api/routes/getNodeInfo/index.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/api/index.js b/api/index.js index 5fefe9f..76431eb 100755 --- a/api/index.js +++ b/api/index.js @@ -7,12 +7,12 @@ */ const config = require('./config'); -const akLogThis = require('./lib/akLogThis'); +const akLogMessage = require('./lib/akLogMessage'); const DEFAULT_PORT = 8610; const PORT = config.port || DEFAULT_PORT; -akLogThis("INFO", "Daemon started") +akLogMessage("INFO", "Daemon started") /* * Split the prefix of each API call in segments for better management * diff --git a/api/routes/getNodeInfo/index.js b/api/routes/getNodeInfo/index.js index b0a91cd..bd2c733 100644 --- a/api/routes/getNodeInfo/index.js +++ b/api/routes/getNodeInfo/index.js @@ -1,5 +1,5 @@ const { spawn } = require('child_process'); -const akLogThis = require('../../lib/akLogThis'); +const akLogMessage = require('../../lib/akLogMessage'); /* * Gets the local latest zblock * @@ -9,7 +9,7 @@ const akLogThis = require('../../lib/akLogThis'); * */ module.exports = (req, res) => { - akLogThis('INFO', `Incoming from [${req.socket._peername.address}]:${req.socket._peername.port} @ ${req.get('host')}${req._parsedOriginalUrl.pathname}`); + akLogMessage('INFO', `Incoming from [${req.socket._peername.address}]:${req.socket._peername.port} @ ${req.get('host')}${req._parsedOriginalUrl.pathname}`); const command = spawn("ak-config", ["get-published"]); var buffer = ""; command.stdout.on("data", data => { |