Browse Source

Comment out a couple of warnings

Ian Goldberg 4 years ago
parent
commit
c537ca21b1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      client.py

+ 2 - 2
client.py

@@ -139,7 +139,7 @@ class TelescopingExtendedHandler:
         circhandler.circuit_descs.append(cell.snip)
 
         # Are we done building the circuit?
-        logging.warning("we may need another circhandler structure for snips")
+        #logging.warning("we may need another circhandler structure for snips")
         if len(circhandler.circuit_descs) == 3:
             # Yes!
             return
@@ -288,7 +288,7 @@ class ClientChannelManager(relay.ChannelManager):
         while True:
             if self.guardaddr is None:
                 #randomly sample a guard
-                logging.warning("Unimplemented! guard should be selected from any relays.")
+                #logging.warning("Unimplemented! guard should be selected from any relays.")
                 self.guard = self.relaypicker.pick_weighted_relay()
                 # here, we have a SNIP instead of a relay descriptor
                 self.guardaddr = self.guard.snipdict['addr']