Skip to content

Commit 07fc4fa

Browse files
committed
Adding logging.basicConfig on initialisation
1 parent b7dd34e commit 07fc4fa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

chainconsumer/chain.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ class ChainConsumer(object):
1414
""" A class for consuming chains produced by an MCMC walk
1515
1616
"""
17-
__version__ = "0.9.8"
17+
__version__ = "0.9.9"
1818

1919
def __init__(self):
20+
logging.basicConfig()
2021
self.logger = logging.getLogger(__name__)
2122
self.all_colours = ["#1E88E5", "#D32F2F", "#4CAF50", "#673AB7", "#FFC107",
2223
"#795548", "#64B5F6", "#8BC34A", "#757575", "#CDDC39"]

paper/paper.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
"keywords": "Python, visualization, mcmc",
1414
"license": "MIT",
1515
"title": "ChainConsumer",
16-
"version": "v0.9.8"
16+
"version": "v0.9.9"
1717
}

0 commit comments

Comments
 (0)