Logging and comment

This commit is contained in:
nzkarit 2018-05-05 21:59:13 +12:00
parent b6573e565f
commit 3c618b9e1b
2 changed files with 5 additions and 3 deletions

View File

@ -84,7 +84,7 @@ def singlePlane(arguments):
return samples
def manyPlanes(arguments):
logger.info('Processing CSV file')
logger.info('Processing CSV file: %s' % (arguments.csvfile))
samples = bytearray()
logger.info('Repeating the message %s times' % (arguments.repeats))
for i in range(0, arguments.repeats):
@ -169,7 +169,8 @@ def threadingCSV(csv):
global logger
logging.config.fileConfig('logging.cfg')
logger = logging.getLogger(__name__)
logger.info('Starting ADSB Encoder')
logger.info('Starting ADSB Encoder threadingCSV entry point')
logger.debug('Being called with the following CSV file: %s' % (csv[0]))
logger.debug('The arguments: %s' % (arguments))
data = None
if arguments.csvfile == '':

View File

@ -23,7 +23,8 @@ def main():
minICAO = 0x0
maxICAO = 0x3E8
splitNumber = 10000
# If the number of planes is less than the split it doesn't work
splitNumber = 100
try:
os.stat(directory)