Skip to content

Commit

Permalink
fix(balancer) debug messages must use DEBUG level (#8410)
Browse files Browse the repository at this point in the history
  • Loading branch information
locao committed Feb 14, 2022
1 parent 36f9485 commit c85e99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kong/runloop/balancer/balancers.lua
Expand Up @@ -228,7 +228,7 @@ function balancers_M.get_balancer(balancer_data, no_create)
if no_create then
return nil, "balancer not found"
else
log(ERR, "balancer not found for ", upstream.name, ", will create it")
log(DEBUG, "balancer not found for ", upstream.name, ", will create it")
return balancers_M.create_balancer(upstream), upstream
end
end
Expand Down

0 comments on commit c85e99f

Please sign in to comment.