Skip to content

Commit 3c3dc32

Browse files
authored
Change logger to use package name instead of module name (#117)
Change logger initialization to use package name instead of module name
1 parent 8aeb539 commit 3c3dc32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyloadapi/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .exceptions import CannotConnect, InvalidAuth, ParserError
1919
from .types import Destination, LoginResponse, PyLoadCommand, StatusServerResponse
2020

21-
_LOGGER = logging.getLogger(__name__)
21+
_LOGGER = logging.getLogger(__package__)
2222

2323

2424
class PyLoadAPI:

0 commit comments

Comments
 (0)