Skip to content

Commit ee0f464

Browse files
committed
add init.py
1 parent e81e6a6 commit ee0f464

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

pymc_experimental/__init__.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
__version__ = "0.0.1"
2+
3+
import logging
4+
5+
_log = logging.getLogger("pmx")
6+
7+
if not logging.root.handlers:
8+
_log.setLevel(logging.INFO)
9+
if len(_log.handlers) == 0:
10+
handler = logging.StreamHandler()
11+
_log.addHandler(handler)

0 commit comments

Comments
 (0)