Changeset 701 in ntrip for trunk/BNC/bncgetthread.cpp


Ignore:
Timestamp:
Feb 23, 2008, 11:57:56 AM (16 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r699 r701  
    487487              _endDateCor = QDateTime::currentDateTime().addSecs(- _adviseReco * 60).toUTC().date().toString("yy-MM-dd");
    488488              _endTimeCor = QDateTime::currentDateTime().addSecs(- _adviseReco * 60).toUTC().time().toString("hh:mm:ss");
    489               emit(newMessage((_staID + ": Corrupted recovery threshold exceeded at " + _endDateCor + " " + _endTimeCor).toAscii()));
     489              emit(newMessage((_staID + ": Recovery threshold exceeded, corruption ended " + _endDateCor + " " + _endTimeCor).toAscii()));
    490490              callScript(("End_Corrupted " + _endDateCor + " " + _endTimeCor + " Begin was " + _begDateCor + " " + _begTimeCor).toAscii());
    491491              endCorrupt = true;
     
    500500                _begDateCor = _decodeSucc.toUTC().date().toString("yy-MM-dd");
    501501                _begTimeCor = _decodeSucc.toUTC().time().toString("hh:mm:ss");
    502                 emit(newMessage((_staID + ": Corrupted failure threshold exceeded at " + _begDateCor + " " + _begTimeCor).toAscii()));
     502                emit(newMessage((_staID + ": Failure threshold exceeded, corrupted since " + _begDateCor + " " + _begTimeCor).toAscii()));
    503503                callScript(("Begin_Corrupted " + _begDateCor + " " + _begTimeCor).toAscii());
    504504                begCorrupt = true;
     
    521521          _endDateOut = QDateTime::currentDateTime().addSecs(- _adviseReco * 60).toUTC().date().toString("yy-MM-dd");
    522522          _endTimeOut = QDateTime::currentDateTime().addSecs(- _adviseReco * 60).toUTC().time().toString("hh:mm:ss");
    523           emit(newMessage((_staID + ": Outage recovery threshold exceeded at " + _endDateOut + " " + _endTimeOut).toAscii()));
     523          emit(newMessage((_staID + ": Recovery threshold exceeded, outage ended " + _endDateOut + " " + _endTimeOut).toAscii()));
    524524          callScript(("End_Outage " + _endDateOut + " " + _endTimeOut + " Begin was " + _begDateOut + " " + _begTimeOut).toAscii());
    525525        }
     
    629629          _begDateOut = _decodeTime.toUTC().date().toString("yy-MM-dd");
    630630          _begTimeOut = _decodeTime.toUTC().time().toString("hh:mm:ss");
    631           emit(newMessage((_staID + ": Outage failure threshold exceeded at " + _begDateOut + " " + _begTimeOut).toAscii()));
     631          emit(newMessage((_staID + ": Failure threshold exceeded, outage since " + _begDateOut + " " + _begTimeOut).toAscii()));
    632632          callScript(("Begin_Outage " + _begDateOut + " " + _begTimeOut).toAscii());
    633633        }
Note: See TracChangeset for help on using the changeset viewer.