Changeset 882

Show
Ignore:
Timestamp:
03/05/08 19:36:50
Author:
robert
Message:

Fixed progress stats text formating

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/vpb/MachinePool.cpp

    r873 r882  
    860860    double estimateTimeToCompletion = estimatedTimeOfLastCompletion-currentTime; 
    861861     
    862     log(osg::NOTICE,"Number of tasks completed %i, running %i, pending %i. Estimated time to completion %.1f seconds, %2.1f%% done.",numTasksCompleted, numTasksRunning, numTasksPending, estimateTimeToCompletion, 100.0*currentTime/estimatedTimeOfLastCompletion); 
     862    log(osg::NOTICE,"Number of tasks completed %i, running %i, pending %i. Estimated time to completion %.1f seconds, %2.1f done.",numTasksCompleted, numTasksRunning, numTasksPending, estimateTimeToCompletion, 100.0*currentTime/estimatedTimeOfLastCompletion); 
    863863 
    864864}