Skip to content

Commit

Permalink
Loggers: changed logger names
Browse files Browse the repository at this point in the history
  • Loading branch information
lalithkota committed Jan 14, 2024
1 parent 6f63db2 commit 285c312
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from ..config import Settings

_config = Settings.get_config()
_logger = logging.getLogger(__name__)
_logger = logging.getLogger(_config.logging_default_logger_name)


class PaymentMultiplexerService(CorePaymentMultiplexerService):
Expand Down
2 changes: 1 addition & 1 deletion gctb-mojaloop-sdk-payment-backend/payment_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Settings(BaseSettings):


_config = Settings.get_config()
_logger = logging.getLogger("openg2p_fastapi_common.app")
_logger = logging.getLogger(_config.logging_default_logger_name)


class ReferenceIdStatus(BaseModel):
Expand Down
2 changes: 1 addition & 1 deletion gctb-simple-mpesa-payment-backend/payment_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Settings(BaseSettings):


_config = Settings.get_config()
_logger = logging.getLogger("openg2p_fastapi_common.app")
_logger = logging.getLogger(_config.logging_default_logger_name)


class ReferenceIdStatus(BaseModel):
Expand Down

0 comments on commit 285c312

Please sign in to comment.