Просмотр исходного кода

Debugging ColoScript2 & PlanetUp failing to get planets

david 5 лет назад
Родитель
Сommit
63633edff0
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      flexible.py

+ 4 - 2
flexible.py

@@ -2346,7 +2346,8 @@ class PlanetUpScript(object):
                     line = line[:7] + ' ' + line[8:]
 
                 details, _, citadel = line.partition('Class')
-                #log.debug(details) # Is that what we are after?
+                log.info(details) # Is that what we are after?
+                log.info(citadel)
                 sector, planet_number, name = re.split(r'\s*', details.strip(), 2)
                 sector = int(sector)
                 number = int(planet_number.replace('#', ''))
@@ -2833,7 +2834,8 @@ class ColoScript2(object):
                     line = line[:7] + ' ' + line[8:]
 
                 details, _, citadel = line.partition('Class')
-                #log.debug(details) # Is that what we are after?
+                log.info(details) # Is that what we are after?
+                log.info(citadel)
                 sector, planet_number, name = re.split(r'\s*', details.strip(), 2)
                 sector = int(sector)
                 number = int(planet_number.replace('#', ''))