I am writing an application with PyObject, based on Gtk.Application
and having GStreamer. For logging system, I am using logbook with colorized handler.
The issue is that, only when I call logger.error
in application __init__
method, the color is displayed. If I call somewhere else in the app (like in signal handler), all color is stripped.
May be it is because of threads setup done by Gtk.Application
and GStreamer? Could someone explain?