From 3e0bcfdb1c0bbc9bea7c2643a715975b8aede98f Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 9 May 2020 18:37:38 +0200 Subject: [PATCH] Added appPath and homePath to debug output --- nw/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nw/config.py b/nw/config.py index f0f21f32..4fb8278e 100644 --- a/nw/config.py +++ b/nw/config.py @@ -227,6 +227,9 @@ class Config: self.iconPath = path.join(self.assetPath,"icons") self.appIcon = path.join(self.iconPath, nwFiles.APP_ICON) + logger.verbose("App path: %s" % self.appPath) + logger.verbose("Home path: %s" % self.homePath) + # If config folder does not exist, make it. # This assumes that the os config folder itself exists. if not path.isdir(self.confPath):