Skip to content

Commit 450ee6b

Browse files
committed
Added some more verbose output on file selectivity
1 parent 3b6fd55 commit 450ee6b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

accessories/data_fetcher/copyfiles.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
481481
for n, monFile in enumerate(dam_filelist):
482482
fname = os.path.split(monFile)[-1]
483483

484-
log.output ( 'Processing file %s/%s: %s' % (n+1, len(dam_filelist), fname) )
484+
log.output ( 'Found file %s/%s: %s' % (n+1, len(dam_filelist), fname) )
485485

486486
try:
487487
mon = int(fname[fname.index(FILE_PREFIX)+len(FILE_PREFIX):-4])
@@ -490,6 +490,10 @@ def processFile(inFile, outFile, startTime, dataType=0, correctErrors=True, clea
490490

491491
if monitors.count(mon):
492492
processFile( monFile, os.path.join(outputPath, fname), startTime, correctErrors=opts.GetOption('correctErrors'), cleanInput=opts.GetOption('cleanInput') )
493+
log.output ( 'Processing file: %s' % (fname) )
494+
else:
495+
log.output ( 'Skipping file: %s' % (fname) )
496+
493497
else:
494498
log.error ( 'The output folder already exists! Process Aborted.' )
495499

0 commit comments

Comments
 (0)