diff options
author | Ronnie Sahlberg <ronniesahlberg@gmail.com> | 2010-10-28 13:32:29 +1100 |
---|---|---|
committer | Ronnie Sahlberg <ronniesahlberg@gmail.com> | 2010-10-28 13:33:30 +1100 |
commit | 1638a63dbe65ac64337539a0cca4eb886bc320f9 (patch) | |
tree | ecec88884953f0305811a5316875162460f2557b | |
parent | 8eb5cfc053e2c554c23814f1fe841e8470bf1ebd (diff) | |
download | samba-1638a63dbe65ac64337539a0cca4eb886bc320f9.tar.gz samba-1638a63dbe65ac64337539a0cca4eb886bc320f9.tar.xz samba-1638a63dbe65ac64337539a0cca4eb886bc320f9.zip |
Drop the loglevel of the "reqid wrap" developer debug message to DEBUG
so that we dont spam the logs with this normal benign message.
(This used to be ctdb commit dc57df549854e329b453ef14cff5cd352632ef73)
-rw-r--r-- | ctdb/common/ctdb_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/common/ctdb_util.c b/ctdb/common/ctdb_util.c index 4acfa3f33e..3e0117361b 100644 --- a/ctdb/common/ctdb_util.c +++ b/ctdb/common/ctdb_util.c @@ -127,7 +127,7 @@ uint32_t ctdb_reqid_new(struct ctdb_context *ctdb, void *state) { int id = idr_get_new_above(ctdb->idr, state, ctdb->lastid+1, INT_MAX); if (id < 0) { - DEBUG(DEBUG_NOTICE, ("Reqid wrap!\n")); + DEBUG(DEBUG_DEBUG, ("Reqid wrap!\n")); id = idr_get_new(ctdb->idr, state, INT_MAX); } ctdb->lastid = id; |