photoprism/internal/query/errors.go
Michael Mayer b62af742ae Backend: Improve log messages
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-07-14 18:00:32 +02:00

27 lines
619 B
Go

package query
import (
"strings"
"github.com/photoprism/photoprism/internal/entity"
)
// Errors returns the error log filtered with an optional search string.
func Errors(limit, offset int, s string) (results entity.Errors, err error) {
stmt := Db()
s = strings.TrimSpace(s)
if s == "errors" {
stmt = stmt.Where("error_level = 'error'")
} else if s == "warnings" {
stmt = stmt.Where("error_level = 'warning'")
} else if len(s) >= 3 {
stmt = stmt.Where("error_message LIKE ?", "%"+s+"%")
}
err = stmt.Order("error_time DESC").Limit(limit).Offset(offset).Find(&results).Error
return results, err
}