Skip to content

Commit

Permalink
update logger version
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinRovang committed Jul 31, 2023
1 parent 71f48df commit d9f943a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion central_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from neotemplate.base_central_processing import CPNeoTemplate


logger = NeoLogger(__name__).get_logger()
logger = NeoLogger(__name__)

class CentralProcessing(CPNeoTemplate):
"""
Expand Down
2 changes: 1 addition & 1 deletion data_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import config.config as cfg

logger = NeoLogger(__name__).get_logger()
logger = NeoLogger(__name__)


class MedqueryDataDownloader:
Expand Down
2 changes: 1 addition & 1 deletion neotemplate/base_central_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from config import config as cfg


logger = NeoLogger(__name__).get_logger()
logger = NeoLogger(__name__)


class CPNeoTemplate(nn.Module):
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
from functools import wraps
from time import time
from neolibrary.monitoring.logger import NeoLogger
import sys

logger = NeoLogger(__name__).get_logger()
logger = NeoLogger(__name__)


def timer(orig_func: Callable):
Expand Down

0 comments on commit d9f943a

Please sign in to comment.