Logging and comment
This commit is contained in:
parent
b6573e565f
commit
3c618b9e1b
@ -84,7 +84,7 @@ def singlePlane(arguments):
|
|||||||
return samples
|
return samples
|
||||||
|
|
||||||
def manyPlanes(arguments):
|
def manyPlanes(arguments):
|
||||||
logger.info('Processing CSV file')
|
logger.info('Processing CSV file: %s' % (arguments.csvfile))
|
||||||
samples = bytearray()
|
samples = bytearray()
|
||||||
logger.info('Repeating the message %s times' % (arguments.repeats))
|
logger.info('Repeating the message %s times' % (arguments.repeats))
|
||||||
for i in range(0, arguments.repeats):
|
for i in range(0, arguments.repeats):
|
||||||
@ -169,7 +169,8 @@ def threadingCSV(csv):
|
|||||||
global logger
|
global logger
|
||||||
logging.config.fileConfig('logging.cfg')
|
logging.config.fileConfig('logging.cfg')
|
||||||
logger = logging.getLogger(__name__)
|
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))
|
logger.debug('The arguments: %s' % (arguments))
|
||||||
data = None
|
data = None
|
||||||
if arguments.csvfile == '':
|
if arguments.csvfile == '':
|
||||||
|
@ -23,7 +23,8 @@ def main():
|
|||||||
|
|
||||||
minICAO = 0x0
|
minICAO = 0x0
|
||||||
maxICAO = 0x3E8
|
maxICAO = 0x3E8
|
||||||
splitNumber = 10000
|
# If the number of planes is less than the split it doesn't work
|
||||||
|
splitNumber = 100
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.stat(directory)
|
os.stat(directory)
|
||||||
|
Loading…
Reference in New Issue
Block a user