Downgrade logs to debug to prevent spam

This commit is contained in:
Samuel Lorch 2024-07-06 17:06:26 +02:00
parent 07044f2dff
commit f4219fe0b2
3 changed files with 3 additions and 3 deletions

View file

@ -129,7 +129,7 @@ func readMessage(ctx context.Context, c *websocket.Conn) error {
if err != nil {
return err
}
slog.InfoContext(ctx, "Got Websocket Message", "type", t.String(), "data", data)
slog.DebugContext(ctx, "Got Websocket Message", "type", t.String(), "data", data)
rpcServer.HandleMessage(ctx, c, data)
return nil
}