2004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

	* *.c: Change level of debug messages to LOG_DEBUG.
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c
index a7c9cef..fa00aab 100644
--- a/ripngd/ripng_interface.c
+++ b/ripngd/ripng_interface.c
@@ -97,7 +97,7 @@
       zlog_warn ("can't setsockopt IPV6_JOIN_GROUP: %s", safe_strerror (errno));
 
     if (IS_RIPNG_DEBUG_EVENT)
-      zlog_info ("RIPng %s join to all-rip-routers multicast group", ifp->name);
+      zlog_debug ("RIPng %s join to all-rip-routers multicast group", ifp->name);
 
     if (ret < 0)
       return -1;
@@ -123,7 +123,7 @@
       zlog_warn ("can't setsockopt IPV6_LEAVE_GROUP: %s\n", safe_strerror (errno));
 
     if (IS_RIPNG_DEBUG_EVENT)
-      zlog_info ("RIPng %s leave from all-rip-routers multicast group",
+      zlog_debug ("RIPng %s leave from all-rip-routers multicast group",
 	         ifp->name);
 
     if (ret < 0)
@@ -216,7 +216,7 @@
   if (ri->running)
    {
      if (IS_RIPNG_DEBUG_EVENT)
-       zlog_info ("turn off %s", ifp->name);
+       zlog_debug ("turn off %s", ifp->name);
 
      /* Leave from multicast group. */
      ripng_multicast_leave (ifp);
@@ -242,7 +242,7 @@
     return 0;
 
   if (IS_RIPNG_DEBUG_ZEBRA)
-    zlog_info ("interface up %s index %d flags %ld metric %d mtu %d",
+    zlog_debug ("interface up %s index %d flags %ld metric %d mtu %d",
 	       ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu6);
 
   /* Check if this interface is RIPng enabled or not. */
@@ -275,7 +275,7 @@
   ripng_if_down (ifp);
 
   if (IS_RIPNG_DEBUG_ZEBRA)
-    zlog_info ("interface down %s index %d flags %ld metric %d mtu %d",
+    zlog_debug ("interface down %s index %d flags %ld metric %d mtu %d",
 	       ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu6);
 
   return 0;
@@ -290,7 +290,7 @@
   ifp = zebra_interface_add_read (zclient->ibuf);
 
   if (IS_RIPNG_DEBUG_ZEBRA)
-    zlog_info ("RIPng interface add %s index %d flags %ld metric %d mtu %d",
+    zlog_debug ("RIPng interface add %s index %d flags %ld metric %d mtu %d",
 	       ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu6);
 
   /* Check is this interface is RIP enabled or not.*/
@@ -436,7 +436,7 @@
   if (p->family == AF_INET6)
     {
       if (IS_RIPNG_DEBUG_ZEBRA)
-	zlog_info ("RIPng connected address %s/%d add",
+	zlog_debug ("RIPng connected address %s/%d add",
 		   inet6_ntop(&p->u.prefix6),
 		   p->prefixlen);
       
@@ -505,7 +505,7 @@
       if (p->family == AF_INET6)
 	{
 	  if (IS_RIPNG_DEBUG_ZEBRA)
-	    zlog_info ("RIPng connected address %s/%d delete",
+	    zlog_debug ("RIPng connected address %s/%d delete",
 		       inet_ntop (AF_INET6, &p->u.prefix6, buf,
 				  INET6_ADDRSTRLEN),
 		       p->prefixlen);
@@ -794,7 +794,7 @@
     {
 	{
 	  if (IS_RIPNG_DEBUG_EVENT)
-	    zlog_info ("RIPng turn on %s", ifp->name);
+	    zlog_debug ("RIPng turn on %s", ifp->name);
 
 	  /* Add interface wake up thread. */
 	  if (! ri->t_wakeup)