Skip to content

Commit

Permalink
Add more debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-fabian committed Dec 11, 2024
1 parent 0b752df commit fa86452
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 128,8 @@ def parse_args() -> Any:
class IMApp:
def __init__(self, dbfile: str, exec_by_ibus: bool) -> None:
if DEBUG_LEVEL > 1:
LOGGER.debug('IMApp.__init__(exec_by_ibus=%s)\n', exec_by_ibus)
LOGGER.debug('IMApp.__init__(dbfile=%s, exec_by_ibus=%s)\n',
dbfile, exec_by_ibus)
self.__mainloop = GLib.MainLoop()
self.__bus: IBus.Bus = IBus.Bus()
self.__bus.connect("disconnected", self.__bus_destroy_cb)
Expand Down

0 comments on commit fa86452

Please sign in to comment.