improved warning message

This commit is contained in:
Jeff Hill
2003-07-31 19:38:14 +00:00
parent 4f9530500b
commit 8d2b3ce0ea

View File

@@ -47,9 +47,12 @@ epicsTimerNotify::expireStatus repeaterSubscribeTimer::
static const unsigned nTriesToMsg = 50;
if ( this->attempts > nTriesToMsg && ! this->once ) {
this->iiu.printf (
"Unable to contact CA repeater after %u tries\n", nTriesToMsg);
"CA client library is unable to contact CA repeater after %u tries.\n",
nTriesToMsg);
this->iiu.printf (
"Silence this message by starting a CA repeater daemon\n");
this->iiu.printf (
"or by calling ca_pend_event() and or ca_poll() more often.\n");
this->once = true;
}