Add more new lines around GTK errors in the test suite

Try to make things a bit more readable.
This commit is contained in:
Vadim Zeitlin 2017-11-07 16:21:38 +01:00
parent c13e28ebfb
commit 643071fc77

View File

@ -416,10 +416,12 @@ wxTestGLogHandler(const gchar* domain,
const gchar* message, const gchar* message,
gpointer data) gpointer data)
{ {
fprintf(stderr, "** GTK log message while running %s(): ", fprintf(stderr, "\n*** GTK log message while running %s(): ",
wxGetCurrentTestName().c_str()); wxGetCurrentTestName().c_str());
g_log_default_handler(domain, level, message, data); g_log_default_handler(domain, level, message, data);
fprintf(stderr, "\n");
} }
#endif // __WXGTK__ #endif // __WXGTK__