diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-06 23:42:41 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-06 23:57:57 +0800 |
commit | 682328cded9d509f121fcd0fc550919e9532ffb9 (patch) | |
tree | fb98bfd0227a82ea4790073347f39c45859d442c /e-util/e-activity.h | |
parent | 427d93b3dfab0e7fcf3ac820dbce2d2f182a9b19 (diff) | |
download | gsoc2013-evolution-682328cded9d509f121fcd0fc550919e9532ffb9.tar.gz gsoc2013-evolution-682328cded9d509f121fcd0fc550919e9532ffb9.tar.zst gsoc2013-evolution-682328cded9d509f121fcd0fc550919e9532ffb9.zip |
Add e_activity_get_last_known_text().
Evolution is still occasionally getting stuck on shutdown, and although
the evolution-shell log domain shows debug messages for activities that
are preventing shutdown, they frequently look like this:
(evolution:13534): evolution-shell-DEBUG: 5 active 'mail' activities:
(evolution:13534): evolution-shell-DEBUG: * (no description)
(evolution:13534): evolution-shell-DEBUG: * (no description)
(evolution:13534): evolution-shell-DEBUG: * (no description)
(evolution:13534): evolution-shell-DEBUG: * (no description)
(evolution:13534): evolution-shell-DEBUG: * (no description)
I think the lack of descriptions is from CamelOperations popping all
their pushed messages, which is correct behavior but doesn't help us
debug the problem.
e_activity_get_last_known_text() returns the most recent _non-empty_
text value set on the EActivity. So our debug message can fall back
to that if the EActivity has no description at shutdown:
(evolution:13534): evolution-shell-DEBUG: * (was "blah, blah, blah")
Diffstat (limited to 'e-util/e-activity.h')
-rw-r--r-- | e-util/e-activity.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/e-util/e-activity.h b/e-util/e-activity.h index 9309fe1fb0..1c2cc4e7d3 100644 --- a/e-util/e-activity.h +++ b/e-util/e-activity.h @@ -90,6 +90,7 @@ void e_activity_set_state (EActivity *activity, const gchar * e_activity_get_text (EActivity *activity); void e_activity_set_text (EActivity *activity, const gchar *text); +const gchar * e_activity_get_last_known_text (EActivity *activity); gboolean e_activity_handle_cancellation (EActivity *activity, const GError *error); |