Skip to content

Commit

Permalink
Fixed logger names
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Aug 1, 2018
1 parent d3da568 commit b205d98
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion graph.py
Expand Up @@ -14,7 +14,7 @@
from visualize import simplify_graph, write_dot
from uris import Reference

logger = logging.getLogger()
logger = logging.getLogger(__name__)

EARLIEST = date(1749, 8, 28)
LATEST = date.today()
Expand Down
2 changes: 1 addition & 1 deletion report.py
Expand Up @@ -18,7 +18,7 @@
from uris import Reference, Witness, Inscription, UnknownRef
from visualize import write_dot, simplify_graph

logger = logging.getLogger()
logger = logging.getLogger(__name__)
target = Path(faust.config.get('macrogenesis', 'output-dir'))


Expand Down
2 changes: 1 addition & 1 deletion uris.py
Expand Up @@ -20,7 +20,7 @@

import faust

logger = logging.getLogger()
logger = logging.getLogger(__name__)


def call_recorder(function=None, argument_picker=None):
Expand Down
2 changes: 1 addition & 1 deletion visualize.py
Expand Up @@ -12,7 +12,7 @@
from faust_logging import logging
from uris import Reference

logger = logging.getLogger()
logger = logging.getLogger(__name__)

_render_queue = []

Expand Down

0 comments on commit b205d98

Please sign in to comment.