commit: af9bb77cadd78d3223cbf07a35802b4a59b42a37
parent 1b2f9d4a6db69e75bc14ff3a756ee7ba9126b1a4
Author: feld <feld@feld.me>
Date: Wed, 14 Feb 2024 18:57:11 +0000
Merge branch 'gun-logs' into 'develop'
Gun connection pool logs
See merge request pleroma/pleroma!4063
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/changelog.d/gun-logs.skip b/changelog.d/gun-logs.skip
diff --git a/lib/pleroma/telemetry/logger.ex b/lib/pleroma/telemetry/logger.ex
@@ -59,7 +59,7 @@ defmodule Pleroma.Telemetry.Logger do
_,
_
) do
- Logger.error(fn ->
+ Logger.debug(fn ->
"Connection pool had to refuse opening a connection to #{key} due to connection limit exhaustion"
end)
end
@@ -81,7 +81,7 @@ defmodule Pleroma.Telemetry.Logger do
%{key: key, protocol: :http},
_
) do
- Logger.info(fn ->
+ Logger.debug(fn ->
"Pool worker for #{key}: #{length(clients)} clients are using an HTTP1 connection at the same time, head-of-line blocking might occur."
end)
end