Drop the loglevel of the "reqid wrap" developer debug message to DEBUG
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 28 Oct 2010 02:32:29 +0000 (13:32 +1100)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 28 Oct 2010 02:33:30 +0000 (13:33 +1100)
so that we dont spam the logs with this normal benign message.

common/ctdb_util.c

index 4acfa3f33e1badaa0b1108e07d6377f62436717a..3e0117361bcb459a4e8f321224c70d842f4c8cbe 100644 (file)
@@ -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;