interact: reduce info logs

This commit is contained in:
c9s 2023-03-23 09:20:44 +08:00
parent 161dc7dc64
commit 2a927dc34d
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54

View File

@ -247,9 +247,9 @@ func (it *Interact) Start(ctx context.Context) error {
}
for _, custom := range it.customInteractions {
log.Infof("checking %T custom interaction...", custom)
log.Debugf("checking %T custom interaction...", custom)
if initializer, ok := custom.(Initializer); ok {
log.Infof("initializing %T custom interaction...", custom)
log.Debugf("initializing %T custom interaction...", custom)
if err := initializer.Initialize(); err != nil {
return err
}