Skip to content

Commit 4211499

Browse files
Merge pull request #61 from jonathanmorris180/fix/stderr-test-runner
Move log statement
2 parents 5405cd2 + 19b9532 commit 4211499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/salesforce/test_runner.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ local function execute_job(command)
5555
end,
5656
on_stderr = function(_, data)
5757
vim.schedule(function()
58-
Debug:log("test_runner.lua", "Command stderr is: %s", data)
5958
if not data then
6059
return
6160
end
61+
Debug:log("test_runner.lua", "Command stderr is: %s", data)
6262
local trimmed_data = vim.trim(data)
6363
if string.len(trimmed_data) > 0 then
6464
Popup:write_to_popup(data)

0 commit comments

Comments
 (0)