X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flogfile.c;h=6d0f6e07826f2eb5391a64bc93db72e642948362;hb=921d36e4b820ee1539f0da22c824e2739f1e546f;hp=03af7a3fe4369f2b614517613ac3c7108f52b7e1;hpb=cfb86a0f119d0ee0e72a920ba1251bb0350cf08b;p=collectd.git diff --git a/src/logfile.c b/src/logfile.c index 03af7a3f..6d0f6e07 100644 --- a/src/logfile.c +++ b/src/logfile.c @@ -39,12 +39,14 @@ static pthread_mutex_t file_lock = PTHREAD_MUTEX_INITIALIZER; static char *log_file = NULL; static int print_timestamp = 1; +static int print_severity = 0; static const char *config_keys[] = { "LogLevel", "File", - "Timestamp" + "Timestamp", + "PrintSeverity" }; static int config_keys_num = STATIC_ARRAY_SIZE (config_keys); @@ -74,12 +76,15 @@ static int logfile_config (const char *key, const char *value) log_file = strdup (value); } else if (0 == strcasecmp (key, "Timestamp")) { - if ((strcasecmp (value, "false") == 0) - || (strcasecmp (value, "no") == 0) - || (strcasecmp (value, "off") == 0)) + if (IS_FALSE (value)) print_timestamp = 0; else print_timestamp = 1; + } else if (0 == strcasecmp(key, "PrintSeverity")) { + if (IS_FALSE (value)) + print_severity = 0; + else + print_severity = 1; } else { return -1; @@ -87,12 +92,37 @@ static int logfile_config (const char *key, const char *value) return 0; } /* int logfile_config (const char *, const char *) */ -static void logfile_print (const char *msg, time_t timestamp_time) +static void logfile_print (const char *msg, int severity, time_t timestamp_time) { FILE *fh; int do_close = 0; struct tm timestamp_tm; char timestamp_str[64]; + char level_str[16] = ""; + + if (print_severity) + { + switch (severity) + { + case LOG_ERR: + snprintf(level_str, sizeof (level_str), "[error] "); + break; + case LOG_WARNING: + snprintf(level_str, sizeof (level_str), "[warning] "); + break; + case LOG_NOTICE: + snprintf(level_str, sizeof (level_str), "[notice] "); + break; + case LOG_INFO: + snprintf(level_str, sizeof (level_str), "[info] "); + break; + case LOG_DEBUG: + snprintf(level_str, sizeof (level_str), "[debug] "); + break; + default: + break; + } + } if (print_timestamp) { @@ -130,9 +160,9 @@ static void logfile_print (const char *msg, time_t timestamp_time) else { if (print_timestamp) - fprintf (fh, "[%s] %s\n", timestamp_str, msg); + fprintf (fh, "[%s] %s%s\n", timestamp_str, level_str, msg); else - fprintf (fh, "%s\n", msg); + fprintf (fh, "%s%s\n", level_str, msg); if (do_close != 0) fclose (fh); @@ -149,7 +179,7 @@ static void logfile_log (int severity, const char *msg, if (severity > log_level) return; - logfile_print (msg, time (NULL)); + logfile_print (msg, severity, time (NULL)); } /* void logfile_log (int, const char *) */ static int logfile_notification (const notification_t *n, @@ -187,7 +217,7 @@ static int logfile_notification (const notification_t *n, buf[sizeof (buf) - 1] = '\0'; - logfile_print (buf, + logfile_print (buf, LOG_INFO, (n->time > 0) ? n->time : time (NULL)); return (0);