lower the loglevel for the info messages that a public ip is not hosted locally for...
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 3 Sep 2009 18:09:30 +0000 (04:09 +1000)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 3 Sep 2009 18:09:30 +0000 (04:09 +1000)
server/ctdb_takeover.c

index 07a0a94ed152a1ac997081dd60f49a18f349da65..f2f57eb7e6f89ea9c23dbcc3f3471fa3e926ede6 100644 (file)
@@ -208,7 +208,7 @@ int32_t ctdb_control_takeover_ip(struct ctdb_context *ctdb,
        /* update out vnn list */
        vnn = find_public_ip_vnn(ctdb, &pip->addr);
        if (vnn == NULL) {
-               DEBUG(DEBUG_ERR,("takeoverip called for an ip '%s' that is not a public address\n", 
+               DEBUG(DEBUG_INFO,("takeoverip called for an ip '%s' that is not a public address\n", 
                        ctdb_addr_to_str(&pip->addr)));
                return 0;
        }
@@ -357,7 +357,7 @@ int32_t ctdb_control_release_ip(struct ctdb_context *ctdb,
        /* update our vnn list */
        vnn = find_public_ip_vnn(ctdb, &pip->addr);
        if (vnn == NULL) {
-               DEBUG(DEBUG_ERR,("takeoverip called for an ip '%s' that is not a public address\n",
+               DEBUG(DEBUG_INFO,("releaseip called for an ip '%s' that is not a public address\n",
                        ctdb_addr_to_str(&pip->addr)));
                return 0;
        }