In python it's idiomatic to set `logger = logging....
# development
h
In python it's idiomatic to set
logger = logging.getLogger(__name__)
, so the logger name is the module name, but that's just convention.
👍 2