Skip to content

Commit 2d25c45

Browse files
[Chore] A few debug statements.
1 parent 7f3aec1 commit 2d25c45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def load_commands_browser_settings():
1010
Returns:
1111
None
1212
"""
13-
13+
print("[CommandsBrowser]: Settings intialized")
1414
commands_browser_settings.obj = sublime.load_settings("CommandsBrowser.sublime-settings")
1515
commands_browser_settings.default = {
1616
"auto_open_doc_panel_on_navigate": False,
@@ -30,8 +30,8 @@ def commands_browser_settings(key):
3030
Returns:
3131
value (Any): The value of said key.
3232
"""
33-
3433
default = commands_browser_settings.default.get(key, None)
34+
print(f"[CommandsBrowser]: {key} - {default}")
3535
return commands_browser_settings.obj.get(key, default)
3636

3737

0 commit comments

Comments
 (0)