Skip to content

Commit

Permalink
fix(subprocess): reduce log level
Browse files Browse the repository at this point in the history
  • Loading branch information
rcarriga committed Dec 31, 2022
1 parent d32b8bf commit 414b43f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/neotest/lib/subprocess.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function neotest.lib.subprocess.init()
logger.info("Starting child process")
local success, parent_address
success, parent_address = pcall(async.fn.serverstart, "localhost:0")
logger.error("Parent address: " .. parent_address)
logger.info("Parent address: " .. parent_address)
if not success then
logger.error("Failed to start server: " .. parent_address)
return
Expand Down

0 comments on commit 414b43f

Please sign in to comment.