Metadata-Version: 2.4
Name: baodebug
Version: 0.1.0
Summary: An simple Python package for debug
Author-email: Runqiu Bao <bao@robot.t.u-tokyo.ac.jp>
License-Expression: MIT
License-File: LICENSE
Keywords: dumpvisz,logging
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

## Python usage

```
import baodebug

baodebug.debugutils.ConfigureRootLogger("info")  # config logger format
baodebug.debugutils.SetDebugPath("/root/visz/")  # create debug folder here and set to os.environ["DEBUG_PATH"]

import logging
logger = logging.getLogger(__name__)

logger.info("this will be printed in green")
```
