Changeset 9212 in ntrip for trunk/BNC/src/bnccore.cpp


Ignore:
Timestamp:
Nov 4, 2020, 3:28:55 PM (3 years ago)
Author:
stuerze
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnccore.cpp

    r9158 r9212  
    206206  }
    207207  else if (eph->checkState() == t_eph::outdated) {
    208     messagePrivate("OUTDATED EPHEMERIS\n" + eph->toString(3.0).toLatin1());
     208    messagePrivate(QString("OUTDATED EPHEMERIS %1 received from %2 (%4)")
     209                   .arg(eph->prn().toString().c_str()).arg(eph->receptStaID())
     210                   .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toLatin1());
    209211    return failure;
    210212  }
    211213  else if (eph->checkState() == t_eph::unhealthy) {
    212     messagePrivate("UNHEALTHY EPHEMERIS\n" + eph->toString(3.0).toLatin1());
     214    messagePrivate(QString("UNHEALTHY EPHEMERIS %1 received from %2 (%4)")
     215                   .arg(eph->prn().toString().c_str()).arg(eph->receptStaID())
     216                   .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toLatin1());
    213217  }
    214218  printEphHeader();
Note: See TracChangeset for help on using the changeset viewer.