From 1581cff897fe1b5c90897670942e0c726cdf4e22 Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Sat, 22 Jan 2022 12:17:29 +0000 Subject: [PATCH] Fix call to log method warn (should be warning) --- Civi/Report/OutputHandlerFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Civi/Report/OutputHandlerFactory.php b/Civi/Report/OutputHandlerFactory.php index a2f975410f..61af4f015b 100644 --- a/Civi/Report/OutputHandlerFactory.php +++ b/Civi/Report/OutputHandlerFactory.php @@ -70,7 +70,7 @@ class OutputHandlerFactory { } catch (\Exception $e) { // no ts() since this is a sysadmin-y message - \Civi::log()->warn("Unable to use $candidate as an output handler. " . $e->getMessage()); + \Civi::log()->warning("Unable to use $candidate as an output handler. " . $e->getMessage()); } } return NULL; -- 2.25.1