Ignore:
Timestamp:
12/26/2019 03:10:19 PM (6 years ago)
Author:
jdalbey
Message:

Modify extract_caddetails to not merge with unifiedlog; this is now done in mergelogs.bash shell script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/python/unifiedlogger/logging_service.py

    r471 r550  
    99    m, s = divmod(int(seconds), 60) 
    1010    h, m = divmod(m, 60) 
    11     return  "%d:%02d:%02d" % (h, m, s)     
     11    return  "%02d:%02d:%02d" % (h, m, s)     
    1212     
    1313# Load the sim time file and extract the seconds */ 
Note: See TracChangeset for help on using the changeset viewer.