summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Daniele Sluijters <daenney@users.noreply.github.com>2023-01-31 09:39:46 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-31 09:39:46 +0100
commiteccb3800d03b585bec78c1ddcd0dced216526eb2 (patch)
tree54fd504bda16d9e6a54bcb5529a74e9e39536916
parent[docs] Add an example on how to setup redirect with Traefik (#1395) (diff)
downloadgotosocial-eccb3800d03b585bec78c1ddcd0dced216526eb2.tar.xz
[chore] Silence maxprocs logging (#1402)
This switches the logger to Debug. By default the library logs things internally despite returning errors. Due to the way we had it hooked up this resulted in scary error level logs being emitted for innocuous errors. Now those errors will only be visible in debug mode. Fixes: #1398 Relates to: #1336
-rw-r--r--cmd/gotosocial/action/server/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gotosocial/action/server/server.go b/cmd/gotosocial/action/server/server.go
index 284647a33..e92f5481a 100644
--- a/cmd/gotosocial/action/server/server.go
+++ b/cmd/gotosocial/action/server/server.go
@@ -62,7 +62,7 @@ import (
// Start creates and starts a gotosocial server
var Start action.GTSAction = func(ctx context.Context) error {
- _, err := maxprocs.Set(maxprocs.Logger(log.Errorf))
+ _, err := maxprocs.Set(maxprocs.Logger(log.Debugf))
if err != nil {
return fmt.Errorf("failed to set CPU limits from cgroup: %s", err)
}