Skip to content
Snippets Groups Projects
Commit 8f044028 authored by Jesse Norell's avatar Jesse Norell
Browse files

fix bind plugin loglevel error

parent 810ed161
No related branches found
No related tags found
No related merge requests found
...@@ -340,7 +340,7 @@ class bind_plugin { ...@@ -340,7 +340,7 @@ class bind_plugin {
if($return_status === 0) { if($return_status === 0) {
$app->log("Writing BIND domain file: ".$filename, LOGLEVEL_DEBUG); $app->log("Writing BIND domain file: ".$filename, LOGLEVEL_DEBUG);
} else { } else {
$loglevel = @($dns_config['disable_bind_log'] === 'y')?'LOGLEVEL_DEBUG':'LOGLEVEL_WARN'; $loglevel = @($dns_config['disable_bind_log'] === 'y') ? LOGLEVEL_DEBUG : LOGLEVEL_WARN;
$app->log("Writing BIND domain file failed: ".$filename." ".implode(' ', $out), $loglevel); $app->log("Writing BIND domain file failed: ".$filename." ".implode(' ', $out), $loglevel);
if(is_array($out) && !empty($out)){ if(is_array($out) && !empty($out)){
$app->log('Reason for Bind restart failure: '.implode("\n", $out), $loglevel); $app->log('Reason for Bind restart failure: '.implode("\n", $out), $loglevel);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment