Ignore:
Timestamp:
May 11, 2022, 12:14:42 PM (3 years ago)
Author:
chronos
Message:
  • Modified: Removed commended out print_r and echo commands used only for debugging.
Location:
trunk/Modules/TimeMeasure
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/TimeMeasure/Graph.php

    r912 r929  
    7070    $Points = $Measure->GetValues($StartTime, $EndTime, $Level);
    7171
    72     if ($Debug) echo('Points count: '.count($Points).'<br/>');
    73     //if ($Debug) foreach ($Points as $Index => $Item)
    74     // echo($Index.': '.$Item['min'].'<br>');
     72    if ($Debug) echo('Points count: '.count($Points).'<br/>');   
    7573
    7674    // Calculate total max, avg, min value
  • trunk/Modules/TimeMeasure/Main.php

    r912 r929  
    5858
    5959    $TimeParts = getdate($_SESSION[$Time]);
    60     //print_r($TimeParts);
    6160
    6261    // Day selection
     
    253252    $Output .= '</table>';
    254253    $Output .= $PageList['Output'];
    255     //echo(time());
    256     //print_r(gd_info());
    257     //print_r($_SESSION);
    258 
     254   
    259255    //ShowPage($Output);
    260256    //echo($PrefixMultiplier->Add('-0.000000071112345', 'B'));
  • trunk/Modules/TimeMeasure/Measurement/System.php

    r874 r929  
    1717    } else
    1818    {
    19       //echo($ERROR_NO.','.$ERROR_STR);
    2019      return FALSE;
    2120    }
     
    8786  {
    8887    $NetworkStateFile = '/tmp/LastNetworkState';
    89     $LastNetworkState = unserializa(file_get_contents($NetworkStateFile));
     88    $LastNetworkState = unserialize(file_get_contents($NetworkStateFile));
    9089    $NetworkState = array('Time' => time());
    9190    $Output = array();
Note: See TracChangeset for help on using the changeset viewer.