logging options in boto3 set_stream_logger

0

I'm trying to find out what the various logging levels are and what they mean. I can't find that anywhere. Can someone please help me on this? I know I can do the following, but that will log everything. boto3.set_stream_logger(''). Also, why don't you have a boto3 or AWS SDK or AWS SDK for python tag?

asked 2 years ago681 views
1 Answer
0
Accepted Answer

The AWS SDK for Python (Boto3) uses the standard Python logging module, so you're most likely to find helpful insights by referencing the official Python docs as well as articles that cover logging generally.

Here's a direct link to the detail on pre-defined logging levels described in the Python docs.

The Python docs don't really provide guidance on when the various log levels should be used. One resource I've found personally useful in understanding logging best practices—including what log levels mean—is the article, "The 10 commandments of logging".

profile pictureAWS
Kris
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions