From 9538d1df0d9dd71b2407715e73fa107d298896a1 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Wed, 28 Jul 2010 13:15:14 +0200 Subject: trivial fix - added a log message to applet - log when applet doesn't show the notification because of the repeated crash --- src/Applet/Applet.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Applet/Applet.cpp') diff --git a/src/Applet/Applet.cpp b/src/Applet/Applet.cpp index cd72ea1c..85ee0db8 100644 --- a/src/Applet/Applet.cpp +++ b/src/Applet/Applet.cpp @@ -100,6 +100,7 @@ static void Crash(DBusMessage* signal) && last_crash_id && strcmp(last_crash_id, crash_id) == 0 && (unsigned)(cur_time - last_time) < 2 * 60 * 60 ) { + log_msg("repeated crash in %s, not showing the notification", package_name); return; } last_time = cur_time; -- cgit