Skip to content

Commit

Permalink
Not seeing Info logs, switching to error temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Johnson committed Jan 16, 2025
1 parent 16b47a1 commit ec546d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/vt/vtgate/plugin_mysql_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -508,12 +508,12 @@ func initMySQLProtocol(vtgate *VTGate) *mysqlServer {
sort.Slice(pluginInitializers, func(i, j int) bool {
return pluginInitializers[i].priority < pluginInitializers[j].priority
})
log.Infof("mysql plugins to initialize: %v", pluginInitializers)
log.Errorf("mysql plugins to initialize: %v", pluginInitializers)
for _, pluginInitializer := range pluginInitializers {
pluginInitializer.initializer()
}
authServer := mysql.GetAuthServer(mysqlAuthServerImpl)
log.Infof("using mysql auth server implementation: %s", mysqlAuthServerImpl)
log.Errorf("using mysql auth server implementation: %s", mysqlAuthServerImpl)

// Check mysql_default_workload
var ok bool
Expand Down

0 comments on commit ec546d0

Please sign in to comment.