Drop the loglevel of the "reqid wrap" developer debug message to DEBUG
[sahlberg/ctdb.git] / common / ctdb_util.c
index 749b9c286f1879de16ff0b9e915c5bbbb4f45a34..c705249549d8e3b0da7dcb1dea62e7f1cfd0a157 100644 (file)
@@ -120,7 +120,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;