logging_handlers.py 388 B

12345678910111213141516
  1. #!/usr/bin/env python3
  2. # Copyright (c) Facebook, Inc. and its affiliates.
  3. # All rights reserved.
  4. #
  5. # This source code is licensed under the BSD-style license found in the
  6. # LICENSE file in the root directory of this source tree.
  7. import logging
  8. from typing import Dict, List
  9. __all__: List[str] = []
  10. _log_handlers: Dict[str, logging.Handler] = {
  11. "default": logging.NullHandler(),
  12. }