You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search the repo for import logging and logger = logging.getLogger(__name__) and replace with from dagster import get_dagster_logger and log = get_dagster_logger(__name__)
Make sure to update any references to the original logger to log
The text was updated successfully, but these errors were encountered:
Search the repo for
import logging
andlogger = logging.getLogger(__name__)
and replace withfrom dagster import get_dagster_logger
andlog = get_dagster_logger(__name__)
Make sure to update any references to the original logger to log
The text was updated successfully, but these errors were encountered: