Bläddra i källkod

Minor logging fixes, uses "who's on" logging.

Steve Thielemann 5 år sedan
förälder
incheckning
d6d0c13dfe
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      proxy.py

+ 2 - 2
proxy.py

@@ -176,7 +176,7 @@ class Game(protocol.Protocol):
                 self.linestate = "cim"
 
     def sectorline(self, line: str):
-        self.log.debug("sector:", self.current_sector, ':', line)
+        self.log.debug("sector: {0} : {1}".format(self.current_sector,line))
         if line.startswith('Beacon  : '):
             pass # get beacon text
         elif line.startswith('Ports   : '):
@@ -224,7 +224,7 @@ class Game(protocol.Protocol):
             _, _, work = line.partition(':')
             work = work.strip().replace('(', '').replace(')', '').replace(' - ', ' ')
             parts = [ int(x) for x in work.split(' ')]
-            self.log.debug("Sectorline warps", parts)
+            self.log.debug("Sectorline warps {0}".format(parts))
             self.gamedata.warp_to(self.current_sector, *parts)
             self.sector_state = 'normal'
             self.linestate = ''