Move Notion logger to a package logger (#43450)

This commit is contained in:
Aaron Bach 2020-11-20 14:47:48 -07:00 committed by GitHub
parent 22f63be30e
commit b4381c5005
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 12 deletions

View file

@ -1,5 +1,8 @@
"""Define constants for the Notion integration."""
import logging
DOMAIN = "notion"
LOGGER = logging.getLogger(__package__)
DATA_COORDINATOR = "coordinator"