aboutsummaryrefslogtreecommitdiff
path: root/api/lib
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2025-03-16 00:57:28 +0200
committerkaotisk <kaotisk@arching-kaos.org>2025-03-16 00:57:28 +0200
commit0238608f85236f0b886f0b53c904d56e08d27d05 (patch)
tree4f77606ce27756e4a3a8395097ecec265d7968cf /api/lib
parentd4fcb369a26507a1fbaa38789cdfd06c559b8c39 (diff)
downloadarching-kaos-tools-0238608f85236f0b886f0b53c904d56e08d27d05.tar.gz
arching-kaos-tools-0238608f85236f0b886f0b53c904d56e08d27d05.tar.bz2
arching-kaos-tools-0238608f85236f0b886f0b53c904d56e08d27d05.zip
Directly call the script to avoid populating the logs with too much info
Diffstat (limited to 'api/lib')
-rw-r--r--api/lib/akLogMessage/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/lib/akLogMessage/index.js b/api/lib/akLogMessage/index.js
index e138f22..6dfb8f2 100644
--- a/api/lib/akLogMessage/index.js
+++ b/api/lib/akLogMessage/index.js
@@ -3,8 +3,8 @@ const config = require('../../config')
module.exports = (type, message) => {
const command = spawn(
- "ak",
- ["log", "-m", "ak-daemon", type, message]
+ "ak-log",
+ ["-m", "ak-daemon", type, message]
);
var buffer = "";