Is it possible to capture `boto` logging output fr...
# ask-community
m
Is it possible to capture
boto
logging output from
dagster_aws
?
dagster bot responded by community 1
a
I haven't tried this myself, but I'd think you could use the managed python loggers to do this. https://docs.dagster.io/concepts/logging/python-logging#capturing-python-logs- potential example config:
Copy code
python_logs:
  python_log_level: INFO
  managed_python_loggers:
    - botocore
    - boto3
    - boto
    - s3transfer
👀 1
dagsir 1
m
thanks Adam, I'll give that a try
a
Out of curiosity (and potential future use myself), did this work? I'm using the above mechanism for my own loggers, but haven't tried it with an external library yet
m
Adam, I solved my IAM policy issue without boto logging and didn't get a chance yet to test this, but I may try it anyway and report back here. Could have an answer for you later today at the earliest