Skip to content

Commit

Permalink
Change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
jiayiwang7 committed Jul 21, 2022
1 parent b637762 commit b1954ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/clusterapi/name.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func IncrementName(name string) (string, error) {
func IncrementNameWithFallbackDefault(name, defaultName string) string {
n, err := IncrementName(name)
if err != nil {
logger.V(3).Info("Unable to increment object name (might due to changes of name format), fallback to the default name", "error", err.Error())
logger.V(4).Info("Unable to increment object name (might due to changes of name format), fallback to the default name", "error", err.Error())
return defaultName
}
return n
Expand Down

0 comments on commit b1954ea

Please sign in to comment.