chore(filters): log type if unknown filter type

This commit is contained in:
kolaente 2024-02-01 16:19:22 +01:00
parent e2b3e00e97
commit 8efdc96d02
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 1 deletions

View File

@ -300,9 +300,10 @@ func convertFilterValues(value interface{}) string {
return "false"
case time.Time:
return strconv.FormatInt(v.Unix(), 10)
default:
log.Errorf("Unknown search type for value %v of type %T", value, value)
}
log.Errorf("Unknown search type for value %v", value)
return ""
}