[Cluster-devel] cluster/cmirror/src clogd.c queues.c
| Newsgroups |
com.redhat.cluster-devel |
| Message-ID |
<[email protected]> |
CVSROOT: /cvs/cluster
Module name: cluster
Branch: RHEL5
Changes by: jbrassow at sourceware.org 2008-01-21 20:18:44
Modified files:
cmirror/src : clogd.c queues.c
Log message:
s/LOG_PRINT/LOG_DBG/ too verbose on exit/signals
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cmirror/src/clogd.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.1.2.3&r2=1.1.2.4
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cmirror/src/queues.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.1.2.2&r2=1.1.2.3
--- cluster/cmirror/src/Attic/clogd.c 2007/12/07 17:07:36 1.1.2.3
+++ cluster/cmirror/src/Attic/clogd.c 2008/01/21 20:18:44 1.1.2.4
@@ -128,7 +128,7 @@
}
if (!r) {
- LOG_PRINT("No current cluster logs... safe to exit.");
+ LOG_DBG("No current cluster logs... safe to exit.");
exit(EXIT_SUCCESS);
}
--- cluster/cmirror/src/Attic/queues.c 2008/01/14 22:52:17 1.1.2.2
+++ cluster/cmirror/src/Attic/queues.c 2008/01/21 20:18:44 1.1.2.3
@@ -85,15 +85,15 @@
struct clog_tfr *tfr;
struct list_head *p, *n;
- LOG_PRINT("cluster_queue: %d", cluster_queue->count);
+ LOG_DBG("cluster_queue: %d", cluster_queue->count);
list_for_each_safe(p, n, &cluster_queue->list) {
tfr = (struct clog_tfr *)p;
- LOG_PRINT(" %d) %s, originator = %u",
- i++, RQ_TYPE(tfr->request_type),
- tfr->originator);
+ LOG_DBG(" %d) %s, originator = %u",
+ i++, RQ_TYPE(tfr->request_type),
+ tfr->originator);
}
- LOG_PRINT("free_queue : %d", free_queue->count);
+ LOG_DBG("free_queue : %d", free_queue->count);
return cluster_queue->count;
}