diff --git a/libavfilter/parseutils.c b/libavfilter/parseutils.c index f407b2bef9..7cafa52cb0 100644 --- a/libavfilter/parseutils.c +++ b/libavfilter/parseutils.c @@ -247,7 +247,7 @@ int av_parse_color(uint8_t *rgba_color, const char *color_string, void *log_ctx) sizeof(ColorEntry), color_table_compare); if (!entry) { - av_log(log_ctx, AV_LOG_DEBUG, "Cannot find color '%s'\n", color_string); + av_log(log_ctx, AV_LOG_ERROR, "Cannot find color '%s'\n", color_string); return -1; } memcpy(rgba_color, entry->rgba_color, 4);