aboutsummaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authortassaron2017-08-21 07:06:12 -0400
committertassaron2017-08-21 07:06:12 -0400
commit62e2ef18a3a31c15f88a96f07b2bc587808f5ad5 (patch)
tree69b51128a34918ab44cfc030b6be2aacc532ca5b /src/core.py
parent9d9c4076ac1dfccdd1a753d137d87bcf5f179e3b (diff)
potential dataDir paths in comments for future reference
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index bfb8272..784f3b8 100644
--- a/src/core.py
+++ b/src/core.py
@@ -14,7 +14,7 @@ import toolkit
log = logging.getLogger('AVP.Core')
STDOUT_LOGLVL = logging.VERBOSE
-FILE_LOGLVL = logging.DEBUG
+FILE_LOGLVL = logging.VERBOSE
class Core:
@@ -460,6 +460,9 @@ class Core:
dataDir = QtCore.QStandardPaths.writableLocation(
QtCore.QStandardPaths.AppConfigLocation
)
+ # Windows: C:/Users/<USER>/AppData/Local/audio-visualizer
+ # macOS: ~/Library/Preferences/audio-visualizer
+ # Linux: ~/.config/audio-visualizer
with open(os.path.join(wd, 'encoder-options.json')) as json_file:
encoderOptions = json.load(json_file)