From 2f0f7ea040da4d0be4d478f3dc484c13f19d6386 Mon Sep 17 00:00:00 2001 From: sun Date: Sun, 10 Nov 2013 15:42:51 +0100 Subject: [PATCH] - #1570504 by sun: Log all messages on existing sites to avoid confusion. --- mollom.install | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mollom.install b/mollom.install index 0a66caf..85da433 100644 --- a/mollom.install +++ b/mollom.install @@ -957,3 +957,14 @@ function mollom_update_6208() { return $ret; } +/** + * Disable minimum log severity threshold for existing sites. + */ +function mollom_update_6209() { + $ret = array(); + if (variable_get('mollom_log_minimum_severity', NULL) === NULL) { + variable_set('mollom_log_minimum_severity', WATCHDOG_INFO); + } + return $ret; +} + -- 1.7.11.msysgit.1