Drop stray debug messages.
authorBen Pfaff <blp@cs.stanford.edu>
Fri, 25 Apr 2008 02:07:54 +0000 (19:07 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Fri, 25 Apr 2008 02:08:52 +0000 (19:08 -0700)
controller/controller.c

index 9ef72d0..b345b67 100644 (file)
@@ -162,7 +162,6 @@ main(int argc, char *argv[])
                         if (retval) {
                             break;
                         }
-                        printf("accept!\n");
                         switches[n_switches++] = new_switch("tcp", new_vconn);
                     }
                 } else {
@@ -273,7 +272,6 @@ static void
 close_switch(struct switch_ *this) 
 {
     if (this) {
-        printf("dropped!\n");
         free(this->name);
         vconn_close(this->vconn);
         queue_destroy(&this->txq);