Changeset 659 in ntrip


Ignore:
Timestamp:
Jan 28, 2008, 4:35:32 PM (16 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r658 r659  
    479479            // ---------------------
    480480            if ( begCorrupt && !endCorrupt && secSucc > _noticeReco * 60 ) {
    481               emit(newMessage(_staID + ": End_Corrupted threshold exceeded"));
     481              emit(newMessage(_staID + ": End_Corrupted, Recovery threshold exceeded"));
    482482              callScript("End_Corrupted");
    483483              endCorrupt = true;
     
    490490              // -----------------------
    491491              if ( !begCorrupt && secFail > _noticeFail * 60 ) {
    492                 emit(newMessage(_staID + ": Begin_Corrupted threshold exceeded"));
     492                emit(newMessage(_staID + ": Begin_Corrupted, Failure threshold exceeded"));
    493493                callScript("Begin_Corrupted");
    494494                begCorrupt = true;
     
    508508        _decodeStart.setDate(QDate());
    509509        _decodeStart.setTime(QTime());
    510         emit(newMessage(_staID + ": End_Outage threshold exceeded"));
     510        emit(newMessage(_staID + ": End_Outage, Recovery threshold exceeded"));
    511511        callScript("End_Outage");
    512512      }
     
    613613        _decodeStop.setDate(QDate());
    614614        _decodeStop.setTime(QTime());
    615         emit(newMessage(_staID + ": Begin_Outage threshold exceeded"));
     615        emit(newMessage(_staID + ": Begin_Outage, Failure threshold exceeded"));
    616616        callScript("Begin_Outage");
    617617      }
  • trunk/BNC/bncwindow.cpp

    r658 r659  
    214214  _noticeRecoSpinBox->setMaximumWidth(9*ww);
    215215  _noticeRecoSpinBox->setValue(settings.value("noticeReco").toInt());
    216   _noticeRecoSpinBox->setWhatsThis(tr("<p>Following a stream outage or a longer series of corrupted observations, a Notice advisory is generated when at least one valid observation is received again within the 'Recovery' threshold time span defined here. A value of about 5min (default) is recommendable. A valu of zero '0' means that BNC immediately informs about any stream recovery. </p><p>Note that using this function for corrupted streams needs an 'Inspect segment' greater zero '0'.</p>"));
     216  _noticeRecoSpinBox->setWhatsThis(tr("<p>Following a stream outage or a longer series of corrupted observations, a Notice advisory is generated when at least one valid observation is received again within the 'Recovery' threshold time span defined here. A value of about 5min (default) is recommendable.</p><p>A valu of zero '0' means that BNC immediately informs about any stream recovery!</p><p>Note that using this function for corrupted streams needs an 'Inspect segment' greater zero '0'.</p>"));
    217217  _noticeFailSpinBox = new QSpinBox();
    218218  _noticeFailSpinBox->setMinimum(0);
     
    222222  _noticeFailSpinBox->setMaximumWidth(9*ww);
    223223  _noticeFailSpinBox->setValue(settings.value("noticeFail").toInt());
    224   _noticeFailSpinBox->setWhatsThis(tr("<p>A Notice advisory is generated when no (or corrupted) observations are received throughout the 'Failure' threshold time span defined here. A value of about 15 min (default) is recommendable. A value of zero '0' means that BNC immediately informs about any stream failure.</p><p>Note that using this function forcorrupted streams needs an 'Inspect segment' greater zero '0'.</p>"));
     224  _noticeFailSpinBox->setWhatsThis(tr("<p>A Notice advisory is generated when no (or corrupted) observations are received throughout the 'Failure' threshold time span defined here. A value of about 15 min (default) is recommendable.</p><p>A value of zero '0' means that BNC immediately informs about any stream failure!</p><p>Note that using this function forcorrupted streams needs an 'Inspect segment' greater zero '0'.</p>"));
    225225  _logFileLineEdit    = new QLineEdit(settings.value("logFile").toString());
    226226  _logFileLineEdit->setWhatsThis(tr("<p>Records of BNC's activities are shown in the 'Log' section below. They can be saved into a file when a valid path is specified in the 'Log (full path)' field.</p>"));
Note: See TracChangeset for help on using the changeset viewer.