Skip to content

Commit

Permalink
fix: JavaScript logging debug → warn
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewferrier committed Nov 26, 2023
1 parent a3f8beb commit c8341fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/debugprint/filetypes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ local docker = vim.deepcopy(shell)

docker.left = "RUN " .. docker.left

-- Use console.warn() rather than console.debug() so that messages are visible
-- by default.
local js = {
left = 'console.debug("',
left = 'console.warn("',
right = '")',
mid_var = '", ',
right_var = ")",
Expand Down

0 comments on commit c8341fd

Please sign in to comment.