| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3.9/site-packages/awscli/ |
Upload File : |
# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
import logging
import awscrt.io
LOG_FORMAT = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
try:
# Initializing CRT logging isn't thread-safe, but setting/updating it is.
# So we always initialize logging when this module is imported so
# subsequent enable/disable CRT logging calls can safely assume it's
# already initialized.
awscrt.io.init_logging(awscrt.io.LogLevel.NoLogs, 'stderr')
except RuntimeError:
# Calling `init_logging` more than once raises a Runtime exception.
# Even though normal usage shouldn't call it more than once in the
# case of multiple imports, we should still guard against it if
# something causes the module cache to be cleared between imports.
pass
def set_stream_logger(logger_name, log_level, stream=None, format_string=None):
"""
Convenience method to configure a stream logger.
:type logger_name: str
:param logger_name: The name of the logger to configure
:type log_level: str
:param log_level: The log level to set for the logger. This
is any param supported by the ``.setLevel()`` method of
a ``Log`` object.
:type stream: file
:param stream: A file like object to log to. If none is provided
then sys.stderr will be used.
:type format_string: str
:param format_string: The format string to use for the log
formatter. If none is provided this will default to
``self.LOG_FORMAT``.
"""
log = logging.getLogger(logger_name)
log.setLevel(logging.DEBUG)
remove_stream_logger(logger_name)
handler_name = f'{logger_name}_stream_handler'
ch = logging.StreamHandler(stream)
ch.set_name(handler_name)
ch.setLevel(log_level)
# create formatter
if format_string is None:
format_string = LOG_FORMAT
formatter = logging.Formatter(format_string)
# add formatter to ch
ch.setFormatter(formatter)
# add ch to logger
log.addHandler(ch)
def remove_stream_logger(logger_name):
"""
Convenience method to configure a stream logger.
:type logger_name: str
:param logger_name: The name of the logger to configure
"""
log = logging.getLogger(logger_name)
handler_name = f'{logger_name}_stream_handler'
for handler in log.handlers:
if handler.get_name() == handler_name:
log.removeHandler(handler)
def enable_crt_logging():
awscrt.io.set_log_level(awscrt.io.LogLevel.Debug)
def disable_crt_logging():
awscrt.io.set_log_level(awscrt.io.LogLevel.NoLogs)