aboutsummaryrefslogtreecommitdiff
path: root/api/lib
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-03-01 09:36:53 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-03-01 09:36:53 +0200
commitcd43e57b999422980ea95df7f1d03117342e358e (patch)
tree37afe07c509e7508d8f69edd0fe8793227401023 /api/lib
parent4e8f09fcf92eb8de4e39d512ce36b9ed87fbde87 (diff)
downloadarching-kaos-tools-cd43e57b999422980ea95df7f1d03117342e358e.tar.gz
arching-kaos-tools-cd43e57b999422980ea95df7f1d03117342e358e.tar.bz2
arching-kaos-tools-cd43e57b999422980ea95df7f1d03117342e358e.zip
Simplifying logs
Diffstat (limited to 'api/lib')
-rw-r--r--api/lib/akLogThis/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/lib/akLogThis/index.js b/api/lib/akLogThis/index.js
index 8f8dded..8f26c84 100644
--- a/api/lib/akLogThis/index.js
+++ b/api/lib/akLogThis/index.js
@@ -4,7 +4,7 @@ const config = require('../../config')
module.exports = (type, message) => {
const command = spawn(
"ak-logthis",
- ["<ak-daemon>", "["+type+"]", message]
+ ["ak-daemon", type, message]
);
var buffer = "";