Skip to content

Commit ec21a42

Browse files
chris75viechris75vie
authored andcommitted
removed logging in atexit handler #603
1 parent 26374f8 commit ec21a42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmdstanpy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
def _cleanup_tmpdir() -> None:
1818
"""Force deletion of _TMPDIR."""
19-
logging.getLogger('cmdstanpy').info('deleting tmpfiles dir: %s', _TMPDIR)
19+
# logging.getLogger('cmdstanpy').info('deleting tmpfiles dir: %s', _TMPDIR)
2020
shutil.rmtree(_TMPDIR, ignore_errors=True)
21-
logging.getLogger('cmdstanpy').info('done')
21+
# logging.getLogger('cmdstanpy').info('done')
2222

2323

2424
atexit.register(_cleanup_tmpdir)

0 commit comments

Comments
 (0)