Skip to content

Commit

Permalink
Fix the getLogger function to return the logger
Browse files Browse the repository at this point in the history
for the current module.

Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
  • Loading branch information
mihaelabalutoiu committed Jan 22, 2024
1 parent fbf25df commit 1df3758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coriolis/taskflow/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

TASK_RETURN_VALUE_FORMAT = "%s-result" % (
constants.TASK_LOCK_NAME_FORMAT)
LOG = logging.getLogger()
LOG = logging.getLogger(__name__)

taskflow_opts = [
cfg.IntOpt(
Expand Down

0 comments on commit 1df3758

Please sign in to comment.