From 4ab767108570a258cf76e3a10507bd2e7ac901a0 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Sun, 28 Nov 2021 12:46:43 -0800 Subject: [PATCH] Simplify `_NativeHandler`. This was extending StreamHandler even though it did not use a stream. Noticed working #12831. Although this fixes nothing, it does make this corner of the codebase make more sense. # Rust tests and lints will be skipped. Delete if not intended. [ci skip-rust] # Building wheels and fs_util will be skipped. Delete if not intended. [ci skip-build-wheels] --- src/python/pants/init/logging.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/pants/init/logging.py b/src/python/pants/init/logging.py index 98bafbd9d18..705c78be9b4 100644 --- a/src/python/pants/init/logging.py +++ b/src/python/pants/init/logging.py @@ -9,7 +9,7 @@ import sys from contextlib import contextmanager from io import BufferedReader, TextIOWrapper -from logging import Formatter, LogRecord, StreamHandler +from logging import Formatter, Handler, LogRecord from pathlib import PurePath from typing import Iterator @@ -28,7 +28,7 @@ logging.addLevelName(pants_logging.TRACE, "TRACE") -class _NativeHandler(StreamHandler): +class _NativeHandler(Handler): """This class is installed as a Python logging module handler (using the logging.addHandler method) and proxies logs to the Rust logging infrastructure."""