gmessages: Add missing trailing newline in fallback log handler

This makes the fallback log handler match the behaviour of the default
log handlers.

Spotted as part of https://gitlab.gnome.org/GNOME/glib/-/issues/2753
This commit is contained in:
John Lindgren 2022-10-13 14:00:12 +01:00 committed by Philip Withnall
parent 057a9e5773
commit d01fb41280

View File

@ -3159,6 +3159,7 @@ _g_log_fallback_handler (const gchar *log_domain,
write_string (stream, level_prefix);
write_string (stream, ": ");
write_string (stream, message);
write_string (stream, "\n");
}
static void