From 5eb516f8d932f3776ed1e2c8dd69468273053592 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Thu, 22 Dec 2011 21:30:40 +0000 Subject: [PATCH] In non-WITH_STARTUPLOG builds, send startup log events to the standard logging system rather than discard them Originally committed to SVN as r6134. --- aegisub/src/frame_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index 205775f77..c59d1fc00 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -88,7 +88,7 @@ enum { #ifdef WITH_STARTUPLOG #define StartupLog(a) MessageBox(0, a, "Aegisub startup log", 0) #else -#define StartupLog(a) +#define StartupLog(a) LOG_I("frame_main/init") << a #endif static void autosave_timer_changed(wxTimer *timer, const agi::OptionValue &opt);