summaryrefslogtreecommitdiffstats
path: root/ctdb/lib
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronniesahlberg@gmail.com>2011-09-08 09:28:33 +1000
committerRonnie Sahlberg <ronniesahlberg@gmail.com>2011-09-08 11:23:16 +1000
commitd78b0ff985c7a389ab4678fef4c2cc30cd278f42 (patch)
tree1e0864dcc23ed91eef8b0d2270cb505ec14ca239 /ctdb/lib
parent1c05db2c9c0173ab30958cd5afceb46efb4b11c4 (diff)
downloadsamba-d78b0ff985c7a389ab4678fef4c2cc30cd278f42.tar.gz
samba-d78b0ff985c7a389ab4678fef4c2cc30cd278f42.tar.xz
samba-d78b0ff985c7a389ab4678fef4c2cc30cd278f42.zip
Drop loglevel for a tevent message from FATAL to ERROR
CQ S1028400 (This used to be ctdb commit 3ce1d3d6c8b8fd3097b8efd2c75797ed7682a562)
Diffstat (limited to 'ctdb/lib')
-rw-r--r--ctdb/lib/tevent/tevent_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/lib/tevent/tevent_util.c b/ctdb/lib/tevent/tevent_util.c
index 28c9da346aa..54c1787400f 100644
--- a/ctdb/lib/tevent/tevent_util.c
+++ b/ctdb/lib/tevent/tevent_util.c
@@ -107,7 +107,7 @@ void tevent_before_wait(struct event_context *ev) {
if (!tevent_timeval_is_zero(&tevent_after_wait_ts)) {
diff = tevent_timeval_until(&tevent_after_wait_ts, &now);
if (diff.tv_sec > 3) {
- tevent_debug(ev, TEVENT_DEBUG_FATAL, __location__
+ tevent_debug(ev, TEVENT_DEBUG_ERROR, __location__
" Handling event took %d seconds!",
(int) diff.tv_sec);
}