fix: add space between logger and flag

This commit is contained in:
Alexis
2021-09-13 14:23:58 +09:30
parent 4f889c08fe
commit 44457727e9

View File

@@ -78,7 +78,7 @@ const getUnraidApiPid = async () => {
return pids.find(_ => _.pid !== process.pid)?.pid;
};
const logToSyslog = (text: string) => execa.commandSync(`logger-t unraid-api[${process.pid}] ${text}`);
const logToSyslog = (text: string) => execa.commandSync(`logger -t unraid-api[${process.pid}] ${text}`);
const commands = {
/**