summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-07-28 13:15:14 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-07-28 13:15:14 +0200
commit9538d1df0d9dd71b2407715e73fa107d298896a1 (patch)
treef35e9084c9940ef38ca7c2dc8151d02106df29c9
parentc420e27920ffc1ee44313738a336a1d3842d6fef (diff)
downloadabrt-9538d1df0d9dd71b2407715e73fa107d298896a1.tar.gz
abrt-9538d1df0d9dd71b2407715e73fa107d298896a1.tar.xz
abrt-9538d1df0d9dd71b2407715e73fa107d298896a1.zip
trivial fix - added a log message to applet
- log when applet doesn't show the notification because of the repeated crash
-rw-r--r--src/Applet/Applet.cpp1
1 files changed, 1 insertions, 0 deletions
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;