Skip to content

Commit

Permalink
Change logger root name
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed Aug 18, 2024
1 parent a6e6856 commit ff82c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picows/picows.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ cdef class WSProtocol:

self._host_port = host_port.encode()
self._ws_path = ws_path.encode() if ws_path else b"/"
self._logger = logging.getLogger(f"pico_ws.{logger_name}")
self._logger = logging.getLogger(f"picows.{logger_name}")
self._log_debug_enabled = self._logger.isEnabledFor(PICOWS_DEBUG_LL)
self._is_client_side = is_client_side
self._disconnect_on_exception = disconnect_on_exception
Expand Down

0 comments on commit ff82c9d

Please sign in to comment.