refactor!: debug instead of warn, less noisy

This commit is contained in:
decentral1se 2022-02-04 11:20:19 +01:00
parent 6bb595fc56
commit 6923876c27
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410

View File

@ -194,7 +194,7 @@ Example:
_, err = exec.LookPath("exiftool")
if err != nil {
logrus.Warn("exiftool is not installed, skipping image captions")
logrus.Debug("exiftool is not installed, skipping image captions")
exiftoolInstalled = false
}