From 744a2280a2e55ebfa61c5d19d781f63d691ede6b Mon Sep 17 00:00:00 2001 From: Neil Lathwood Date: Fri, 23 Sep 2016 23:41:23 +0100 Subject: [PATCH] fix: Broken graphs --- LibreNMS/Proc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibreNMS/Proc.php b/LibreNMS/Proc.php index 0ac7a703b8..37e1b6019f 100644 --- a/LibreNMS/Proc.php +++ b/LibreNMS/Proc.php @@ -65,7 +65,7 @@ class Proc $env = null, $blocking = false ) { - echo "Starting process: $cmd"; + d_echo("Starting process: $cmd"); $this->_process = proc_open($cmd, $descriptorspec, $this->_pipes, $cwd, $env); if (!is_resource($this->_process)) { throw new Exception("Command failed: $cmd");