diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-03-16 00:57:28 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-03-16 00:57:28 +0200 |
commit | 0238608f85236f0b886f0b53c904d56e08d27d05 (patch) | |
tree | 4f77606ce27756e4a3a8395097ecec265d7968cf /api/lib/akLogMessage/index.js | |
parent | d4fcb369a26507a1fbaa38789cdfd06c559b8c39 (diff) | |
download | arching-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/akLogMessage/index.js')
-rw-r--r-- | api/lib/akLogMessage/index.js | 4 |
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 = ""; |