summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-14 10:03:44 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-14 10:03:44 +0000
commit5e747be2d0bd05f1c075a2e12bfad56844ddc7d1 (patch)
treeba1fd71887a30d995e53f05e8a95b3f96e0152f6 /stream.c
parent413aa120019af45ee8c8c51934cbf5df844a3bdd (diff)
downloadrsyslog-5e747be2d0bd05f1c075a2e12bfad56844ddc7d1.tar.gz
rsyslog-5e747be2d0bd05f1c075a2e12bfad56844ddc7d1.tar.xz
rsyslog-5e747be2d0bd05f1c075a2e12bfad56844ddc7d1.zip
- improved file polling algorithm for more rapid file data delivery
- some more cleanup
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index e9f3d808..5cff2bc3 100644
--- a/stream.c
+++ b/stream.c
@@ -199,7 +199,7 @@ strmHandleEOFMonitor(strm_t *pThis)
ABORT_FINALIZE(RS_RET_IO_ERROR);
if(stat((char*) pThis->pszCurrFName, &statName) == -1)
ABORT_FINALIZE(RS_RET_IO_ERROR);
-dbgoprint((obj_t*)pThis, "curr ino %d, new ino %d, curr offset %lld, new size %ld\n", statOpen.st_ino, statName.st_ino, pThis->iCurrOffs, statName.st_size);
+//dbgoprint((obj_t*)pThis, "curr ino %d, new ino %d, curr offset %lld, new size %ld\n", statOpen.st_ino, statName.st_ino, pThis->iCurrOffs, statName.st_size);
if(statOpen.st_ino == statName.st_ino && pThis->iCurrOffs == statName.st_size) {
ABORT_FINALIZE(RS_RET_EOF);
} else {