Skip to content

Commit

Permalink
feat: provide clearer server error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
vyfor committed Dec 27, 2024
1 parent 653c13d commit 34bfe12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/cord/server/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ M.connect = async.wrap(function(path, retried)
if retry then return M.connect(path):await() end
M.connect(path, true):await()
end)
end, function(err) logger.error('Failed to spawn server: ' .. err) end)
end, function(err) logger.error(err) end)
end)

M.run = async.wrap(function()
Expand Down

0 comments on commit 34bfe12

Please sign in to comment.