AWS Glue jobs log output and errors to two different CloudWatch logs, /aws-glue/jobs/error and /aws-glue/jobs/output by default. When I include p
/aws-glue/jobs/error
/aws-glue/jobs/output
p
Just in case this helps. This works to change the log level.
sc = SparkContext() sc.setLogLevel('DEBUG') glueContext = GlueContext(sc) logger = glueContext.get_logger() logger.info('Hello Glue')