diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-07-28 13:15:14 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-07-28 13:15:14 +0200 |
| commit | 9538d1df0d9dd71b2407715e73fa107d298896a1 (patch) | |
| tree | f35e9084c9940ef38ca7c2dc8151d02106df29c9 /src/Applet/Applet.cpp | |
| parent | c420e27920ffc1ee44313738a336a1d3842d6fef (diff) | |
| download | abrt-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
Diffstat (limited to 'src/Applet/Applet.cpp')
| -rw-r--r-- | src/Applet/Applet.cpp | 1 |
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; |
