chiark / gitweb /
log: include syslog identifier in default log properties, to avoid comm truncation
[elogind.git] / src / shared / log.c
index a648b837859309c9d29ac564d604e534d057873d..da5309888c4d4aacaa1e869ec18b1b879543db52 100644 (file)
@@ -466,12 +466,14 @@ static int write_to_journal(
                  "CODE_FILE=%s\n"
                  "CODE_LINE=%i\n"
                  "CODE_FUNCTION=%s\n"
+                 "SYSLOG_IDENTIFIER=%s\n"
                  "MESSAGE=",
                  LOG_PRI(level),
                  LOG_FAC(level),
                  file,
                  line,
-                 func);
+                 func,
+                 program_invocation_short_name);
 
         char_array_0(header);