aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-06-22 10:12:59 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-06-22 10:12:59 +0000
commit854742837a9381bb24ee48f0cfeb628fa7eb27d5 (patch)
tree022e330b0f343f7745f7e1a757dc514e33be0072
parent2bb3a478822aa4da8d3eae42270b143a968eeed2 (diff)
downloadbusybox-w32-854742837a9381bb24ee48f0cfeb628fa7eb27d5.tar.gz
busybox-w32-854742837a9381bb24ee48f0cfeb628fa7eb27d5.tar.bz2
busybox-w32-854742837a9381bb24ee48f0cfeb628fa7eb27d5.zip
Patch from Bastian Blank:
Hi folks The following patch adds a new log message output to syslogd. This output omits hostname and priority and is used in d-i to make the syslog output better readable without lossing information. Bastian I am applying this since I have syslogd hacked up in my wife's access point with the same format string.... Might as well make this hack official. -Erik git-svn-id: svn://busybox.net/trunk/busybox@8914 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--sysklogd/syslogd.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index 49deab2d7..8845bb41b 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -35,6 +35,7 @@
35#include <paths.h> 35#include <paths.h>
36#include <signal.h> 36#include <signal.h>
37#include <stdarg.h> 37#include <stdarg.h>
38#include <stdbool.h>
38#include <time.h> 39#include <time.h>
39#include <string.h> 40#include <string.h>
40#include <unistd.h> 41#include <unistd.h>
@@ -88,6 +89,9 @@ static int doRemoteLog = FALSE;
88static int local_logging = FALSE; 89static int local_logging = FALSE;
89#endif 90#endif
90 91
92/* Make loging output smaller. */
93static bool small = false;
94
91 95
92#define MAXLINE 1024 /* maximum line length */ 96#define MAXLINE 1024 /* maximum line length */
93 97
@@ -428,8 +432,13 @@ static void logMessage(int pri, char *msg)
428 } 432 }
429 if (local_logging == TRUE) 433 if (local_logging == TRUE)
430#endif 434#endif
435 {
431 /* now spew out the message to wherever it is supposed to go */ 436 /* now spew out the message to wherever it is supposed to go */
432 message("%s %s %s %s\n", timestamp, LocalHostName, res, msg); 437 if (small)
438 message("%s %s\n", timestamp, msg);
439 else
440 message("%s %s %s %s\n", timestamp, LocalHostName, res, msg);
441 }
433} 442}
434 443
435static void quit_signal(int sig) 444static void quit_signal(int sig)
@@ -666,6 +675,9 @@ extern int syslogd_main(int argc, char **argv)
666 circular_logging = TRUE; 675 circular_logging = TRUE;
667 break; 676 break;
668#endif 677#endif
678 case 'S':
679 small = true;
680 break;
669 default: 681 default:
670 bb_show_usage(); 682 bb_show_usage();
671 } 683 }