aboutsummaryrefslogtreecommitdiff
path: root/api/lib/akLogThis
diff options
context:
space:
mode:
Diffstat (limited to 'api/lib/akLogThis')
-rw-r--r--api/lib/akLogThis/index.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/api/lib/akLogThis/index.js b/api/lib/akLogThis/index.js
deleted file mode 100644
index 8f26c84..0000000
--- a/api/lib/akLogThis/index.js
+++ /dev/null
@@ -1,28 +0,0 @@
-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}`);
- });
-};