Tidy up debug vs. non-debug output

This commit is contained in:
Paul Gear
2015-06-13 22:54:40 +10:00
parent 0e17cd967f
commit da346c3a35
3 changed files with 8 additions and 7 deletions

View File

@@ -364,7 +364,6 @@ function rrd_create_update($device, $name, $def, $val, $step = 300)
if (!is_file($rrd) && $def != null) {
// add the --step and the rra definitions to the array
$newdef = "--step $step ".implode(' ', $def).$config['rrd_rra'];
d_echo("Creating RRD $rrd: $newdef");
rrdtool_create($rrd, $newdef);
}

View File

@@ -11,10 +11,12 @@
* the source code distribution for details.
*/
d_echo("MIB-based polling");
echo("MIB-based polling");
d_echo("\n", ": ");
$devicemib = array($device['sysObjectID'] => "all");
poll_mibs($devicemib, $device, $graphs);
d_echo("Done MIB-based polling");
echo("\n");
?>