From c19ee468e8b2498b783edcc9fe07c2945a0c6913 Mon Sep 17 00:00:00 2001 From: Radek Hvizdos Date: Thu, 9 Feb 2017 13:07:11 +0100 Subject: [PATCH] Change webp->jpeg fallback message log level to ERR --- motion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motion.c b/motion.c index 659056d8..572ffdb7 100644 --- a/motion.c +++ b/motion.c @@ -855,7 +855,7 @@ static int motion_init(struct context *cnt) cnt->imgs.picture_type = IMAGE_TYPE_WEBP; #else /* Fallback to jpeg if webp was selected in the config file, but the support for it was not compiled in */ - MOTION_LOG(WRN, TYPE_ALL, NO_ERRNO, "%s: webp image format is not available, failing back to jpeg"); + MOTION_LOG(ERR, TYPE_ALL, NO_ERRNO, "%s: webp image format is not available, failing back to jpeg"); cnt->imgs.picture_type = IMAGE_TYPE_JPEG; #endif /* HAVE_WEBP */ }