# -*- coding: utf-8 -*- """ proxy.py ~~~~~~~~ ⚡⚡⚡ Fast, Lightweight, Programmable, TLS interception capable proxy server for Application debugging, testing and development. :copyright: (c) 2013-present by Abhinav Singh and contributors. :license: BSD, see LICENSE for more details. """ import logging from proxy.common.constants import DEFAULT_LOG_FORMAT logging.basicConfig(level=logging.DEBUG, format=DEFAULT_LOG_FORMAT)