Skip to content

Commit 3b5d8c4

Browse files
kwisiioroulet
authored andcommitted
fixed wrong logger initialization
'__name__' -> __name__
1 parent a6fe064 commit 3b5d8c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncua/common/ua_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
from asyncua import ua
1313

14-
_logger = logging.getLogger('__name__')
14+
_logger = logging.getLogger(__name__)
1515

1616

1717
def value_to_datavalue(val, varianttype=None):

0 commit comments

Comments
 (0)