Skip to content

Commit a251a7e

Browse files
[Chore] More debug statements.
1 parent d1e05fa commit a251a7e

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/commands/commands_browser_core_commands.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ def on_highlight(self, idx, commands_data):
131131
return
132132

133133
auto_open = commands_browser_settings("auto_open_doc_panel_on_navigate")
134+
print(auto_open)
134135

135136
if (type(auto_open) != bool):
136137
log(f"""'{auto_open}' is an invalid value for the setting

src/utils/miscellaneous_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def filter_command_types(setting_name):
5454
on which, we will filter the commands
5555
"""
5656
cmd_type_filter_list = commands_browser_settings(f"{setting_name}")
57+
print(cmd_type_filter_list)
5758

5859
if (type(cmd_type_filter_list) != list) or (len(cmd_type_filter_list) == 0):
5960
log(f"""'{cmd_type_filter_list}' is an invalid value for the setting

0 commit comments

Comments
 (0)