From fd98efb6f8162a5e205424d7d846788e50139fd6 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 31 Oct 2002 18:06:02 +0000 Subject: [PATCH] use fprintf because errlogPrintf output is clipped at exit --- src/ca/caEventRate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca/caEventRate.cpp b/src/ca/caEventRate.cpp index 6a2d695b7..9af789201 100644 --- a/src/ca/caEventRate.cpp +++ b/src/ca/caEventRate.cpp @@ -44,7 +44,7 @@ void caEventRate ( const char *pName ) status = ca_pend_io ( 10.0 ); if ( status != ECA_NORMAL ) { - errlogPrintf ( "caEventRate: %s not found\n", pName ); + fprintf ( stderr, "caEventRate: %s not found\n", pName ); return; }