From: YmrDtnJu Date: Sat, 7 Jul 2018 18:11:46 +0000 (+0200) Subject: logger: Define SD_JOURNAL_SUPPRESS_LOCATION. X-Git-Tag: v2.32.1~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5407a6ac4fe1a0d57049530fb144a83ebc1291d9;p=thirdparty%2Futil-linux.git logger: Define SD_JOURNAL_SUPPRESS_LOCATION. The normal journald functions add the location in the C source code files to the log messages. This is nice for a big C based project, but logger is used in scripts so it would be more useful to let users specify the location in the script by adding the CODE_FUNC, CODE_FILE and CODE_FILE fields to the log message. It is already possible to do this, but it will result in two versions of these fields: one for the location in logger.c and one for the location in the script. --- diff --git a/misc-utils/logger.c b/misc-utils/logger.c index 846c852734..ebdc56ec2e 100644 --- a/misc-utils/logger.c +++ b/misc-utils/logger.c @@ -68,6 +68,7 @@ #include #ifdef HAVE_LIBSYSTEMD +# define SD_JOURNAL_SUPPRESS_LOCATION # include # include #endif