79685156

Date: 2025-06-30 18:27:06
Score: 1
Natty:
Report link

Had the same issue. Using python logging module instead of Glue logger fixed my issue.

import logging

logging.basicConfig(
    level=logging.INFO,
    format="%(asctime)s - %(levelname)s - %(message)s"
)
logger = logging.getLogger(__name__)

logger.info("Output message")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mahima chowdary maddineni