mirror of https://github.com/ecmwf/eccodes.git
MEMFS: cleaner progress reports
This commit is contained in:
parent
f1e9143b59
commit
a4501b8f02
9
memfs.py
9
memfs.py
|
@ -51,7 +51,7 @@ args = parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
start = time.time()
|
start = time.time()
|
||||||
print("MEMFS: starting")
|
print("MEMFS: Starting")
|
||||||
|
|
||||||
# Exclude experimental features e.g. GRIB3 and TAF
|
# Exclude experimental features e.g. GRIB3 and TAF
|
||||||
# The BUFR codetables is not used in the engine
|
# The BUFR codetables is not used in the engine
|
||||||
|
@ -67,8 +67,8 @@ EXCLUDED.extend(EXCLUDE[args.exclude])
|
||||||
|
|
||||||
|
|
||||||
dirs = [os.path.realpath(x) for x in args.dirs]
|
dirs = [os.path.realpath(x) for x in args.dirs]
|
||||||
print("Directories: ", dirs)
|
print("MEMFS: Directories: ", dirs)
|
||||||
print("Excluding: ", EXCLUDED)
|
print("MEMFS: Excluding: ", EXCLUDED)
|
||||||
|
|
||||||
FILES = {}
|
FILES = {}
|
||||||
SIZES = {}
|
SIZES = {}
|
||||||
|
@ -201,6 +201,5 @@ for line in f.readlines():
|
||||||
print(line, file=g)
|
print(line, file=g)
|
||||||
|
|
||||||
|
|
||||||
print("Finished")
|
|
||||||
|
|
||||||
print("MEMFS: done", time.time() - start)
|
print("MEMFS: Done", time.time() - start)
|
||||||
|
|
Loading…
Reference in New Issue