From ae85462f2bf0812755a29ea17080b14f681acaf4 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 14 Jan 2010 16:53:32 -0500 Subject: [PATCH] if openbox isn't running, show messages on the console rather than just losing them (like when another WM is running) --- openbox/debug.c | 2 ++ 1 file changed, 2 insertions(+) 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, -- 2.44.0