chore: adding log to check error

This commit is contained in:
2025-05-10 14:30:26 +01:00
parent 7b0c84e88e
commit c69ca7da5c

View File

@ -99,7 +99,9 @@ func ListenProcessingImageStatus(db *sql.DB, notifier *Notifier[string]) {
logger.Info("Update", "id", stringUuid, "status", status)
notifier.SendAndCreate(stringUuid, status)
if err := notifier.SendAndCreate(stringUuid, status); err != nil {
logger.Error(err)
}
}
}
}