]> git.puffer.fish Git - matthieu/frr.git/commitdiff
2004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
authorajs <ajs>
Wed, 8 Dec 2004 20:41:23 +0000 (20:41 +0000)
committerajs <ajs>
Wed, 8 Dec 2004 20:41:23 +0000 (20:41 +0000)
* *.c: Change level of debug messages to LOG_DEBUG.

bgpd/bgp_network.c
bgpd/bgp_nexthop.c

index 7dcddb7987831f79d1ad7e358245b968e42ff8f6..df377835d4b54a5f1a5881ddf11795f94ffa5fd6 100644 (file)
@@ -70,7 +70,7 @@ bgp_accept (struct thread *thread)
     }
 
   if (BGP_DEBUG (events, EVENTS))
-    zlog_info ("[Event] BGP connection from host %s", inet_sutop (&su, buf));
+    zlog_debug ("[Event] BGP connection from host %s", inet_sutop (&su, buf));
   
   /* Check remote IP address */
   peer1 = peer_lookup (bgp, &su);
@@ -79,10 +79,10 @@ bgp_accept (struct thread *thread)
       if (BGP_DEBUG (events, EVENTS))
        {
          if (! peer1)
-           zlog_info ("[Event] BGP connection IP address %s is not configured",
+           zlog_debug ("[Event] BGP connection IP address %s is not configured",
                       inet_sutop (&su, buf));
          else
-           zlog_info ("[Event] BGP connection IP address %s is Idle state",
+           zlog_debug ("[Event] BGP connection IP address %s is Idle state",
                       inet_sutop (&su, buf));
        }
       close (bgp_sock);
@@ -98,7 +98,7 @@ bgp_accept (struct thread *thread)
 
   /* Make dummy peer until read Open packet. */
   if (BGP_DEBUG (events, EVENTS))
-    zlog_info ("[Event] Make dummy peer structure until read Open packet");
+    zlog_debug ("[Event] Make dummy peer structure until read Open packet");
 
   {
     char buf[SU_ADDRSTRLEN + 1];
@@ -252,7 +252,7 @@ bgp_connect (struct peer *peer)
 #endif /* HAVE_IPV6 */
 
   if (BGP_DEBUG (events, EVENTS))
-    plog_info (peer->log, "%s [Event] Connect start to %s fd %d",
+    plog_debug (peer->log, "%s [Event] Connect start to %s fd %d",
               peer->host, peer->host, peer->fd);
 
   /* Connect to the remote peer. */
index cd899841edff35426a6a7357719f0c7b7b246def..c368eba503bd30a18fec46554415b8a4e7c0c541 100644 (file)
@@ -517,7 +517,7 @@ bgp_scan_timer (struct thread *t)
     thread_add_timer (master, bgp_scan_timer, NULL, bgp_scan_interval);
 
   if (BGP_DEBUG (normal, NORMAL))
-    zlog_info ("Performing BGP general scanning");
+    zlog_debug ("Performing BGP general scanning");
 
   bgp_scan (AFI_IP, SAFI_UNICAST);