summaryrefslogtreecommitdiffstats
path: root/ctdb/common/system_linux.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronniesahlberg@gmail.com>2010-02-04 06:37:41 +1100
committerRonnie Sahlberg <ronniesahlberg@gmail.com>2010-02-04 06:37:41 +1100
commitd7c00d8d7e4ea7d9eec34d565bc3d027ce5eaf80 (patch)
treeec95d671d6002ab7865d98298c304772011570cf /ctdb/common/system_linux.c
parent68273bbab83324d7e75acd8ef089a30b6658f46a (diff)
downloadsamba-d7c00d8d7e4ea7d9eec34d565bc3d027ce5eaf80.tar.gz
samba-d7c00d8d7e4ea7d9eec34d565bc3d027ce5eaf80.tar.xz
samba-d7c00d8d7e4ea7d9eec34d565bc3d027ce5eaf80.zip
Drop the debug level for logging fd creation to DEBUG_DEBUG
(This used to be ctdb commit eae1d4f9e52e73b4d8769868fffdafa590d03784)
Diffstat (limited to 'ctdb/common/system_linux.c')
-rw-r--r--ctdb/common/system_linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/common/system_linux.c b/ctdb/common/system_linux.c
index d8229debb7..b8aace422a 100644
--- a/ctdb/common/system_linux.c
+++ b/ctdb/common/system_linux.c
@@ -186,7 +186,7 @@ int ctdb_sys_send_arp(const ctdb_sock_addr *addr, const char *iface)
return -1;
}
- DEBUG(DEBUG_NOTICE, (__location__ " Created SOCKET FD:%d for sending arp\n", s));
+ DEBUG(DEBUG_DEBUG, (__location__ " Created SOCKET FD:%d for sending arp\n", s));
strncpy(ifr.ifr_name, iface, sizeof(ifr.ifr_name));
if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
DEBUG(DEBUG_CRIT,(__location__ " interface '%s' not found\n", iface));
@@ -427,7 +427,7 @@ int ctdb_sys_open_capture_socket(const char *iface, void **private_data)
return -1;
}
- DEBUG(DEBUG_NOTICE, (__location__ " Created RAW SOCKET FD:%d for tcp tickle\n", s));
+ DEBUG(DEBUG_DEBUG, (__location__ " Created RAW SOCKET FD:%d for tcp tickle\n", s));
set_nonblocking(s);
set_close_on_exec(s);