diff --git a/ratelimit.go b/ratelimit.go index 3042ce9..c66665c 100644 --- a/ratelimit.go +++ b/ratelimit.go @@ -32,10 +32,10 @@ func loadRatelimitConfig() error { if err == nil { return nil } - cfg.Logger.Error("Failed to load config", map[string]interface{}{"path": path, "error": err}) + cfg.Logger.Debug("Failed to load config", map[string]interface{}{"path": path, "error": err}) } - cfg.Logger.Debug("Rate limit config not found") + cfg.Logger.Error("Rate limit config not found") return os.ErrNotExist }