From: Dana Jansens Date: Thu, 14 Jan 2010 21:53:32 +0000 (-0500) Subject: if openbox isn't running, show messages on the console rather than just losing them... X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fopenbox;a=commitdiff_plain;h=ae85462f2bf0812755a29ea17080b14f681acaf4 if openbox isn't running, show messages on the console rather than just losing them (like when another WM is running) --- diff --git a/openbox/debug.c b/openbox/debug.c index c1180c33..8423e8ab 100644 --- a/openbox/debug.c +++ b/openbox/debug.c @@ -136,6 +136,8 @@ static void prompt_handler(const gchar *log_domain, GLogLevelFlags log_level, { if (ob_state() == OB_STATE_RUNNING) prompt_show_message(message, _("Openbox"), _("Close")); + else + log_handler(log_domain, log_level, message, data); } static inline void log_argv(ObDebugType type,