lower the debuglevel when logging unknown idr in responses
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Tue, 9 Sep 2008 03:59:48 +0000 (13:59 +1000)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Tue, 9 Sep 2008 03:59:48 +0000 (13:59 +1000)
common/ctdb_util.c

index 792ff3c79d287d9b7db6599d01a7772135c9c6a2..cc68291c0e0624437cd753dcdfafb76b54eb119e 100644 (file)
@@ -147,7 +147,7 @@ void *_ctdb_reqid_find(struct ctdb_context *ctdb, uint32_t reqid, const char *ty
 
        p = _idr_find_type(ctdb->idr, (reqid>>16)&0xFFFF, type, location);
        if (p == NULL) {
-               DEBUG(DEBUG_ERR, ("Could not find idr:%u\n",reqid));
+               DEBUG(DEBUG_WARNING, ("Could not find idr:%u\n",reqid));
        }
 
        return p;