Skip to content

Commit 985892d

Browse files
authored
Merge pull request #604 from chris75vie/develop
removed logging in atexit handler #603
2 parents 9f33f12 + ec21a42 commit 985892d

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)