fix: use proper logger info function instead if print

This commit is contained in:
Robert Kaussow 2022-06-02 14:28:13 +02:00
parent 6a8d6f1df5
commit ac04718aec
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ func (p *Plugin) Execute() error {
}
if p.settings.SkipMissing && !p.settings.IsFile {
logrus.Printf("comment skipped: 'message' is not a valid path or file does not exist while 'skip-missing' is enabled")
logrus.Infof("comment skipped: 'message' is not a valid path or file does not exist while 'skip-missing' is enabled")
return nil
}