Skip to content

Commit

Permalink
fixed wrong logger initialization
Browse files Browse the repository at this point in the history
'__name__' -> __name__
  • Loading branch information
kwisii authored and oroulet committed Nov 25, 2023
1 parent a6fe064 commit 3b5d8c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asyncua/common/ua_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from asyncua import ua

_logger = logging.getLogger('__name__')
_logger = logging.getLogger(__name__)


def value_to_datavalue(val, varianttype=None):
Expand Down

0 comments on commit 3b5d8c4

Please sign in to comment.