Changeset 9218 in ntrip


Ignore:
Timestamp:
Nov 4, 2020, 4:31:03 PM (3 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bnccore.cpp

    r9216 r9218  
    202202  t_irc ircPut = _ephUser.putNewEph(eph, true);
    203203  if      (eph->checkState() == t_eph::bad) {
    204     messagePrivate(QString("WRONG EPHEMERIS %1 received from %2 (%4)")
    205                    .arg(eph->prn().toString().c_str()).arg(eph->receptStaID())
     204    messagePrivate(QString("%1 WRONG EPHEMERIS: %2")
     205                   .arg(eph->receptStaID())
    206206                   .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toAscii());
    207207    return failure;
    208208  }
    209209  else if (eph->checkState() == t_eph::outdated) {
    210     messagePrivate(QString("OUTDATED EPHEMERIS %1 received from %2 (%4)")
    211                    .arg(eph->prn().toString().c_str()).arg(eph->receptStaID())
     210    messagePrivate(QString("%1 OUTDATED EPHEMERIS: %2")
     211                   .arg(eph->receptStaID())
    212212                   .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toAscii());
    213213    return failure;
    214214  }
    215215  else if (eph->checkState() == t_eph::unhealthy) {
    216     messagePrivate(QString("UNHEALTHY EPHEMERIS %1 received from %2 (%4)")
    217                    .arg(eph->prn().toString().c_str()).arg(eph->receptStaID())
     216    messagePrivate(QString("%1: UNHEALTHY EPHEMERIS: %2")
     217                   .arg(eph->receptStaID())
    218218                   .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 3.0)).toAscii());
    219219  }
Note: See TracChangeset for help on using the changeset viewer.