Skip to content

Commit

Permalink
fix: remove call to memory_usage
Browse files Browse the repository at this point in the history
  • Loading branch information
peppsac committed Oct 18, 2018
1 parent 0282ddb commit 41ddfed
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions py3dtiles/points/task/node_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,8 @@ def run(work, octree_metadata, queue, verbose):
})], copy=False)

if log_enabled:
print('[<] return result [{} sec, {} MB] [{}]'.format(
print('[<] return result [{} sec] [{}]'.format(
round(time.time() - begin, 2),
memory_usage(proc=os.getpid()),
time.time() - begin), file=log_file, flush=True)
if log_file is not None:
log_file.close()
Expand Down

0 comments on commit 41ddfed

Please sign in to comment.