From bbc18587bb0da2ba4a7702217fe31c3724a7ed76 Mon Sep 17 00:00:00 2001 From: Till Brehm Date: Tue, 20 Sep 2016 17:15:16 +0200 Subject: [PATCH] Fixed #4157 remove apachectl warning on non-apache hosts --- server/lib/classes/system.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/classes/system.inc.php b/server/lib/classes/system.inc.php index 978a891b42..cdd6f06e1a 100644 --- a/server/lib/classes/system.inc.php +++ b/server/lib/classes/system.inc.php @@ -1905,7 +1905,7 @@ class system{ if($this->is_installed('apache2ctl')) $cmd = 'apache2ctl -v'; elseif($this->is_installed('apachectl')) $cmd = 'apachectl -v'; else { - $app->log("Could not check apache version, apachectl not found.", LOGLEVEL_WARN); + $app->log("Could not check apache version, apachectl not found.", LOGLEVEL_DEBUG); return '2.2'; } -- GitLab