libgimp: Don't use g_message() for log message

`g_message()` will end up as a dialog shown to the user, but we can be
pretty sure that they won't understand what this message means.
This commit is contained in:
Niels De Graef 2020-12-30 12:21:46 +01:00
parent 226f3707de
commit 273486a625

View file

@ -203,7 +203,7 @@ gimp_window_get_native_id (GtkWindow *window)
#ifdef GDK_WINDOWING_WAYLAND
if (GDK_IS_WAYLAND_WINDOW (surface))
g_message ("Getting window ID for progress not supported on Wayland yet");
g_debug ("Getting window ID for progress not supported on Wayland yet");
#endif
return 0;