Changeset 5773 in ntrip for trunk/BNC/src/PPP/pppClient.cpp


Ignore:
Timestamp:
Aug 4, 2014, 9:56:29 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppClient.cpp

    r5772 r5773  
    114114  if      (ephGPS) {
    115115    _ephPool->putEphemeris(new t_ephGPS(*ephGPS));
     116    LOG << OPT->_roverName <<  " putEphemeris GPS" << endl;
    116117  }
    117118  else if (ephGlo) {
    118119    _ephPool->putEphemeris(new t_ephGlo(*ephGlo));
     120    LOG << OPT->_roverName <<  " putEphemeirs Glo" << endl;
    119121  }
    120122  else if (ephGal) {
    121123    _ephPool->putEphemeris(new t_ephGal(*ephGal));
     124    LOG << OPT->_roverName <<  " putEphemeris Gal" << endl;
    122125  }
    123126}
     
    129132    _ephPool->putOrbCorrection(new t_orbCorr(corr[ii]));
    130133  }
     134  LOG << OPT->_roverName <<  " putOrbCorrections " << corr.size() << endl;
    131135}
    132136
     
    137141    _ephPool->putClkCorrection(new t_clkCorr(corr[ii]));
    138142  }
     143  LOG << OPT->_roverName <<  " putClkCorrections " << corr.size() << endl;
    139144}
    140145
     
    145150    _obsPool->putBiases(new t_satBias(biases[ii]));
    146151  }
     152  LOG << OPT->_roverName <<  " putBiases " << biases.size() << endl;
    147153}
    148154
Note: See TracChangeset for help on using the changeset viewer.