Changeset 10953 in ntrip for trunk/BNC/src/PPP/pppEphPool.cpp


Ignore:
Timestamp:
Jun 30, 2026, 2:29:42 PM (4 weeks ago)
Author:
stuerze
Message:

debug output added

File:
1 edited

Legend:

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

    r10791 r10953  
    101101      eph->setOrbCorr(corr);
    102102    }
     103    else {
     104      LOG << "putOrbCorrection " << corr->_prn.toString() << " corrIOD = " << corr->_iod << " ephIODs = ";
     105      for (auto* e : _ephs) LOG << e->IOD() << " ";
     106      LOG << endl;
     107    }
    103108  }
    104109  delete corr;
     
    116121    if (eph->IOD() == corr->_iod) {
    117122      eph->setClkCorr(corr);
     123    }
     124    else {
     125      LOG << "putClockCorrection " << corr->_prn.toString() << " corrIOD = " << corr->_iod << " ephIODs = ";
     126      for (auto* e : _ephs) LOG << e->IOD() << " ";
     127      LOG << endl;
    118128    }
    119129  }
Note: See TracChangeset for help on using the changeset viewer.