AWS Glue Job does not log information messages in the output file

0

Hi,

I was using AWS Glue job with Python shell. The log.info() messages does not log in the output log file instead it logs in the error.log file.

Here is the snippet we use to log messages in the glue job

we define logger as below code snippet: def logger_setup(self): self.logger = logging.getLogger(name) self.logger.setLevel(logging.INFO) formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') console_handler = logging.StreamHandler() console_handler.setLevel(logging.INFO) console_handler.setFormatter(formatter) self.logger.addHandler(console_handler)

However when we used in the main file, logger.info(f"first day of month for this job {self.first_day_of_month}") This message logs in the Error logs instead Output logs. I want to post info messages in the Output logs. Can you tell me how we can achieve this? Is there any documentation available in logging messages in Glue job Python Shell

Chandra
已提问 7 个月前384 查看次数
2 回答
0

Could you please try with the following piece of code:

self.logger.setLevel(logging.DEBUG) ... console_handler = logging.StreamHandler(sys.stdout) console_handler.setLevel(logging.DEBUG)

Thank you :)

已回答 7 个月前
0

I tried this with sys.stdout. But this print all the log levels on both output log and error log. I want to print logger.info() into output log and logger.error() in error log. Is there a way to print that?

Chandra
已回答 7 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容