Backend: Reduce log levels
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
parent
76c545c542
commit
95687df6bc
2 changed files with 2 additions and 2 deletions
|
@ -526,7 +526,7 @@ func (ind *Index) MediaFile(m *MediaFile, o IndexOptions, originalName string) (
|
|||
labels := photo.ClassifyLabels()
|
||||
|
||||
if err := photo.UpdateTitle(labels); err != nil {
|
||||
log.Warnf("%s for %s", err.Error(), logName)
|
||||
log.Debugf("%s (%s)", err.Error(), logName)
|
||||
}
|
||||
|
||||
w := txt.Keywords(photo.Details.Keywords)
|
||||
|
|
|
@ -191,7 +191,7 @@ func (m *Moments) Start() (err error) {
|
|||
}
|
||||
|
||||
if a := entity.FindAlbumBySlug(mom.Slug(), entity.AlbumMoment); a != nil {
|
||||
log.Debugf("moments: %s already exists (%s)", txt.Quote(mom.Title()), f.Serialize())
|
||||
log.Tracef("moments: %s already exists (%s)", txt.Quote(mom.Title()), f.Serialize())
|
||||
|
||||
if f.Serialize() == a.AlbumFilter || a.DeletedAt != nil {
|
||||
// Nothing to do.
|
||||
|
|
Loading…
Reference in a new issue