s4-interface: raise the debug level for interface discovery
authorAndrew Tridgell <tridge@samba.org>
Wed, 8 Jun 2011 00:41:38 +0000 (10:41 +1000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 8 Jun 2011 02:56:04 +0000 (04:56 +0200)
source4/lib/socket/interface.c

index 9cb8f5e61138fed0552900da7761de2a403fc93b..d5b610fea7f9a50ae7b9c89c25f00e4396088365 100644 (file)
@@ -116,18 +116,18 @@ static void add_interface(TALLOC_CTX *mem_ctx, const struct iface_struct *ifs, s
        /* keep string versions too, to avoid people tripping over the implied
           static in inet_ntoa() */
        print_sockaddr(addr, sizeof(addr), &iface->ip);
-       DEBUG(2,("added interface %s ip=%s ",
+       DEBUG(4,("added interface %s ip=%s ",
                 iface->name, addr));
        iface->ip_s = talloc_strdup(iface, addr);
 
        print_sockaddr(addr, sizeof(addr),
                       &iface->bcast);
-       DEBUG(2,("bcast=%s ", addr));
+       DEBUG(4,("bcast=%s ", addr));
        iface->bcast_s = talloc_strdup(iface, addr);
 
        print_sockaddr(addr, sizeof(addr),
                       &iface->netmask);
-       DEBUG(2,("netmask=%s\n", addr));
+       DEBUG(4,("netmask=%s\n", addr));
        iface->nmask_s = talloc_strdup(iface, addr);
 
        /*