Call logging.info rather than logging.debug in the 'info' auxiliary dialog function.

pull/61/head
Christian T. Jacobs 2017-06-27 20:03:44 +01:00
rodzic 4f61570828
commit 879e49b496
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -37,7 +37,7 @@ def info(parent, message):
:arg parent: The Gtk parent window/dialog.
:arg str message: The message to display to the user.
"""
logging.debug(message)
logging.info(message)
handle_gtk_dialog(parent, Gtk.MessageType.INFO, message, "Information")