logging_handlers.py 359 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. __all__: list[str] = []
  9. _log_handlers: dict[str, logging.Handler] = {
  10. "default": logging.NullHandler(),
  11. }