Merge pull request #12862 from heww/fix-issue-12861

fix(quota): change log to debug level when warning not found
This commit is contained in:
He Weiwei 2020-08-24 16:37:58 +08:00 committed by GitHub
commit 2ab4fbefd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,13 +16,13 @@ package quota
import (
"fmt"
lib_http "github.com/goharbor/harbor/src/lib/http"
"net/http"
"strings"
cq "github.com/goharbor/harbor/src/controller/quota"
"github.com/goharbor/harbor/src/lib"
"github.com/goharbor/harbor/src/lib/errors"
lib_http "github.com/goharbor/harbor/src/lib/http"
"github.com/goharbor/harbor/src/lib/log"
"github.com/goharbor/harbor/src/pkg/notification"
"github.com/goharbor/harbor/src/pkg/notifier/event"
@ -134,7 +134,7 @@ func RequestMiddleware(config RequestConfig, skippers ...middleware.Skipper) fun
}
if len(resources) == 0 {
logger.Warningf("not warning resources found")
logger.Debug("not warning resources found")
return
}