diff --git a/aw_watcher_window/lib.py b/aw_watcher_window/lib.py index 8bf3eef..5ad669b 100644 --- a/aw_watcher_window/lib.py +++ b/aw_watcher_window/lib.py @@ -1,7 +1,10 @@ import sys import json +import logging from typing import Optional +logger = logging.getLogger(__name__) + class Linux: def __init__(self): @@ -9,6 +12,7 @@ def __init__(self): import pydbus self.bus = pydbus.SessionBus() except ModuleNotFoundError: + logger.info("pydbus not installed, GNOME-Shell Wayland support disabled") self.bus = False self.gnome_shell = None