aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-06-16 11:52:18 +0200
committerAleksander Morgado <aleksander@aleksander.es>2021-06-16 11:59:51 +0200
commit89bbc2ccb83c608dc95df7f073024f679b73786a (patch)
tree00487e9ee3e04b55a33096ff642ad48e01907341 /src/main.c
parent8905cf4670c260c332b1b8b84cc8cdb972937957 (diff)
core: dump fatal initialization errors to stderr
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 89345435..a9221cdc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -166,7 +166,7 @@ main (int argc, char *argv[])
mm_context_get_log_timestamps (),
mm_context_get_log_relative_timestamps (),
&error)) {
- g_warning ("failed to set up logging: %s", error->message);
+ g_printerr ("error: failed to set up logging: %s\n", error->message);
g_error_free (error);
exit (1);
}