Skip to content

Commit fa3a638

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncua/ua/ua_binary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from ..common.utils import Buffer
1616
from .uatypes import type_from_optional, type_is_list, type_is_union, type_from_list, types_or_list_from_union, type_allow_subclass
1717

18-
logger = logging.getLogger('__name__')
18+
logger = logging.getLogger(__name__)
1919

2020
T = TypeVar('T')
2121

0 commit comments

Comments
 (0)