diff options
Diffstat (limited to 'api/lib/akLogThis/index.js')
-rw-r--r-- | api/lib/akLogThis/index.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/api/lib/akLogThis/index.js b/api/lib/akLogThis/index.js new file mode 100644 index 0000000..8f8dded --- /dev/null +++ b/api/lib/akLogThis/index.js @@ -0,0 +1,28 @@ +const { spawn } = require('child_process'); +const config = require('../../config') + +module.exports = (type, message) => { + const command = spawn( + "ak-logthis", + ["<ak-daemon>", "["+type+"]", message] + ); + + var buffer = ""; + command.stdout.on("data", data => { + console.log(`stdout: ${data}`); + }); + + command.stderr.on("data", data => { + buffer = buffer + data; + }); + + command.on('error', (error) => { + console.log(`error: ${error.message}`); + }); + + command.on("close", code => { + // res.send(JSON.parse(buffer)); + if (config.printDebug === "yes") console.log(buffer); + console.log(`child process exited with code ${code}`); + }); +}; |