summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1471059)
raw | patch | inline | side by side (parent: 1471059)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 23 Dec 2007 10:43:22 +0000 (11:43 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 23 Dec 2007 10:43:22 +0000 (11:43 +0100) |
src/logfile.c | patch | blob | history |
diff --git a/src/logfile.c b/src/logfile.c
index adea3024bd3eca2e0af2446aa69139e6720df7cc..00dc030e38507050d784cb054629f2f4534b6020 100644 (file)
--- a/src/logfile.c
+++ b/src/logfile.c
return 0;
} /* int logfile_config (const char *, const char *) */
-static void logfile_log (int severity, const char *msg)
+static void logfile_print (const char *msg, time_t timestamp_time)
{
FILE *fh;
int do_close = 0;
- time_t timestamp_time;
struct tm timestamp_tm;
char timestamp_str[64];
- if (severity > log_level)
- return;
-
if (print_timestamp)
{
- timestamp_time = time (NULL);
localtime_r (×tamp_time, ×tamp_tm);
strftime (timestamp_str, sizeof (timestamp_str), "%Y-%m-%d %H:%M:%S",
pthread_mutex_unlock (&file_lock);
return;
+} /* void logfile_print */
+
+static void logfile_log (int severity, const char *msg)
+{
+ if (severity > log_level)
+ return;
+
+ logfile_print (msg, time (NULL));
} /* void logfile_log (int, const char *) */
+int logfile_notification (const notification_t *n)
+{
+ char msg[1024] = "";
+ int status;
+
+ status = snprintf (msg, sizeof (msg), "Notification: %s: message = %s, "
+ "host = %s",
+ (n->severity == NOTIF_FAILURE) ? "FAILURE"
+ : ((n->severity == NOTIF_WARNING) ? "WARNING"
+ : ((n->severity == NOTIF_OKAY) ? "OKAY" : "UNKNOWN")),
+ n->message, n->host);
+ msg[sizeof (msg) - 1] = '\0';
+
+ logfile_print (msg, n->time);
+
+ return (0);
+} /* int logfile_notification */
+
void module_register (void)
{
plugin_register_config ("logfile", logfile_config,
config_keys, config_keys_num);
plugin_register_log ("logfile", logfile_log);
+ plugin_register_notification ("logfile", logfile_notification);
} /* void module_register (void) */
/* vim: set sw=4 ts=4 tw=78 noexpandtab : */