updated logging usage, to use the library directly and avoid imposing a core config by default, allowing users of the core library to configure logging as desired

This commit is contained in:
bharnden 2019-02-16 09:50:19 -08:00
parent 37f747c212
commit 7aee2b2ba7
44 changed files with 552 additions and 527 deletions

View file

@ -2,7 +2,7 @@
Serves as a global point for storing and retrieving node types needed during simulation.
"""
from core import logger
import logging
_NODE_MAP = None
@ -13,7 +13,7 @@ def _log_map():
name = None
if value:
name = value.__name__
logger.debug("node type (%s) - class (%s)", key.name, name)
logging.debug("node type (%s) - class (%s)", key.name, name)
def _convert_map(x, y):