Skip to content

Commit

Permalink
Fix broken logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
bpozdena committed Jul 30, 2022
1 parent 3e74490 commit c4e54d8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/OneDriveGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@
DIR_PATH = os.path.dirname(os.path.realpath(__file__))
APPIMAGE = True if "tmp/.mount_One" in DIR_PATH else False

logging.debug(f"[GUI] Running from directory: {DIR_PATH}")


# Logging
# TODO: Implement logging configuration into the GUI.
log_dir = os.path.expanduser("~/.config/onedrive-gui/")
Expand All @@ -81,6 +78,8 @@
level=logging.DEBUG,
)

logging.debug(f"[GUI] Running from directory: {DIR_PATH}")


class SetupWizard(QWizard):
def __init__(self, parent=None):
Expand Down

0 comments on commit c4e54d8

Please sign in to comment.