Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/wakatime/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ setup_debug_mode = function()
if not state.debug_mode_already_setup then
-- Prioritize config file setting if it exists
local debug_setting = get_ini_setting('settings', 'debug')
if debug_setting == 'true' or state.config.debug == 'true' then
if debug_setting == 'true' or state.config.debug == true then
state.is_debug_on = true
end
state.debug_mode_already_setup = true
Expand Down