Changeset 2002

Show
Ignore:
Timestamp:
15/12/2007 20:04:15 (13 months ago)
Author:
chris
Message:

Add -U option to enable logging microsecond timestamps

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • box/trunk/infrastructure/buildenv-testmain-template.cpp

    r1927 r2002  
    170170        int ch; 
    171171         
    172         while ((ch = getopt_long(argc, argv, "c:s:t:T", longopts, NULL)) 
     172        while ((ch = getopt_long(argc, argv, "c:s:t:TU", longopts, NULL)) 
    173173                != -1) 
    174174        { 
     
    201201                        { 
    202202                                Console::SetShowTime(true); 
     203                        } 
     204                        break; 
     205 
     206                        case 'U': 
     207                        { 
     208                                Console::SetShowTime(true); 
     209                                Console::SetShowTimeMicros(true); 
    203210                        } 
    204211                        break;