Ignore:
Timestamp:
11/21/17 16:03:00 (6 years ago)
Author:
yushan
Message:

log files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_openmp/src/node/field.cpp

    r1341 r1342  
    316316    while (currentDate >= lastDataRequestedFromServer) 
    317317    { 
    318       //info(20) << "currentDate : " << currentDate << endl ; 
    319       //info(20) << "lastDataRequestedFromServer : " << lastDataRequestedFromServer << endl ; 
    320       //info(20) << "file->output_freq.getValue() : " << file->output_freq.getValue() << endl ; 
    321       //info(20) << "lastDataRequestedFromServer + file->output_freq.getValue() : " << lastDataRequestedFromServer + file->output_freq << endl ; 
    322  
     318      #pragma omp critical (_output) 
     319      { 
     320        info(20) << "currentDate : " << currentDate << endl ; 
     321        info(20) << "lastDataRequestedFromServer : " << lastDataRequestedFromServer << endl ; 
     322        info(20) << "file->output_freq.getValue() : " << file->output_freq.getValue() << endl ; 
     323        info(20) << "lastDataRequestedFromServer + file->output_freq.getValue() : " << lastDataRequestedFromServer + file->output_freq << endl ; 
     324      } 
    323325      dataRequested |= sendReadDataRequest(lastDataRequestedFromServer + file->output_freq); 
    324326    } 
Note: See TracChangeset for help on using the changeset viewer.