]> git.ipfire.org Git - people/stevee/network.git/commitdiff
Disable async logging
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 17 Apr 2015 10:07:26 +0000 (10:07 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 17 Apr 2015 10:07:26 +0000 (10:07 +0000)
This causes even more unreadable output in the journal.

src/functions/functions.logging

index 57b432617220dfec9987b2602eaf512cdf1dbede..eefa3c413bd073e8ec45e0a3c4142b43292a52a4 100644 (file)
@@ -47,7 +47,7 @@ function log() {
                message_log="${HOOK}: ${message_log}"
        fi
 
-       logger -t "${LOG_FACILITY}[$$]" "${message_log}" &
+       logger -t "${LOG_FACILITY}[$$]" "${message_log}"
 
        # Leave here, when there should be no output on the console.
        [ "${LOG_DISABLE_STDOUT}" = "true" ] && return 0