ADicksonLab / wepy

Weighted Ensemble simulation framework in Python
https://adicksonlab.github.io/wepy/index.html
MIT License
48 stars 20 forks source link

Handle logging properly #88

Closed salotz closed 9 months ago

salotz commented 9 months ago

Currently the code just uses logging.info calls everywhere which interacts poorly with other uses of the code. Instead this should be refactored to something like:

import logging

logger = logging.getLogger(__name__)

logger.info("blah")

In all the modules.