Log artwork origin (tag, file, etc...)

This commit is contained in:
Deluan 2022-12-20 12:55:40 -05:00 committed by Deluan Quintão
parent 92b42b35b3
commit e0da1d1589
2 changed files with 29 additions and 27 deletions

View file

@ -252,6 +252,8 @@ func addFields(logger *logrus.Entry, keyValuePairs []interface{}) *logrus.Entry
switch v := keyValuePairs[i+1].(type) {
case time.Duration:
logger = logger.WithField(name, ShortDur(v))
case fmt.Stringer:
logger = logger.WithField(name, v.String())
default:
logger = logger.WithField(name, v)
}