فهرست منبع

Se borran algunas impresiones.

Maxi Schvindt 7 سال پیش
والد
کامیت
9b43d4f4ef

+ 0 - 1
Command/FiberhomeOnuRxCommand.php

@@ -66,7 +66,6 @@ class FiberhomeOnuRxCommand extends BaseCommand
                 $value = 0.01 * $rx;
                 $sn = strtolower($dataCached[$index]['serialNumber']);
                 $k = $metric.strtolower($sn);
-                //print_r("$line - $index - $k - $value".PHP_EOL);
                 $sendData[$k] = "{$value}|g";
                 $line++;
                 

+ 0 - 2
Command/FiberhomeOnuStatsCommand.php

@@ -89,8 +89,6 @@ class FiberhomeOnuStatsCommand extends BaseCommand
             }
         }
 
-        //print_r($stats);
-
         foreach($stats as $metric => $data) {
             $key_onu_stats = "{$metric}{$this->d_s}";
 

+ 0 - 1
Command/FiberhomeOnuTemperatureCommand.php

@@ -66,7 +66,6 @@ class FiberhomeOnuTemperatureCommand extends BaseCommand
                 $value = 0.01 * $temp;
                 $sn = strtolower($dataCached[$index]['serialNumber']);
                 $k = $metric.strtolower($sn);
-                //print_r("$line - $index - $k - $value".PHP_EOL);
                 $sendData[$k] = "{$value}|g";
                 $line++;
 

+ 0 - 1
Command/FiberhomeOnuTxCommand.php

@@ -66,7 +66,6 @@ class FiberhomeOnuTxCommand extends BaseCommand
                 $value = 0.01 * $tx;
                 $sn = strtolower($dataCached[$index]['serialNumber']);
                 $k = $metric.$sn;
-                //print_r("$line - $index - $k - $value".PHP_EOL);
                 $sendData[$k] = "{$value}|g";
                 $line++;
 

+ 0 - 1
Command/FiberhomeOnuVoltageCommand.php

@@ -66,7 +66,6 @@ class FiberhomeOnuVoltageCommand extends BaseCommand
                 $value = 0.01 * $volt;
                 $sn = strtolower($dataCached[$index]['serialNumber']);
                 $k = $metric.strtolower($sn);
-                //print_r("$line - $index - $k - $value".PHP_EOL);
                 $sendData[$k] = "{$value}|g";
                 $line++;