Skip to content

Commit 4665972

Browse files
authored
log.Info -> log.Infof in tabletserver for reloading ACLs (vitessio#18461)
Signed-off-by: Nick Van Wiggeren <[email protected]>
1 parent 51fc977 commit 4665972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/vt/vttablet/tabletserver/tabletserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ func (tsv *TabletServer) InitACL(tableACLConfigFile string, reloadACLConfigFileI
384384
if err != nil {
385385
log.Errorf("Error reloading ACL config file %s in SIGHUP handler: %v", tableACLConfigFile, err)
386386
} else {
387-
log.Info("Successfully reloaded ACL file %s in SIGHUP handler", tableACLConfigFile)
387+
log.Infof("Successfully reloaded ACL file %s in SIGHUP handler", tableACLConfigFile)
388388
}
389389
}
390390
}()

0 commit comments

Comments
 (0)