From 87abb4055c29e8ba5dd26e4ce9cbb24647ac5daa Mon Sep 17 00:00:00 2001 From: skarimo <40482491+skarimo@users.noreply.github.com> Date: Thu, 21 Dec 2023 14:36:37 -0500 Subject: [PATCH] cleanup log format (#200) --- datadog_sync/utils/filter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datadog_sync/utils/filter.py b/datadog_sync/utils/filter.py index ba5d41e1..fd36df52 100644 --- a/datadog_sync/utils/filter.py +++ b/datadog_sync/utils/filter.py @@ -102,8 +102,8 @@ def process_filters(filter_list: List[str]) -> Dict[str, List[Filter]]: if not f_dict.get(FILTER_OPERATOR_KEY): f_dict[FILTER_OPERATOR_KEY] = EXACT_MATCH_OPERATOR log.warning( - "Defaulting to filter Operator `ExactMatch'. Please ensure the filter Value provided is \ - updated as this behavior will be removed in the future. See the official README for more information" + "Defaulting to filter Operator `ExactMatch'. Please ensure the filter Value provided is" + + "updated as this behavior will be removed in the future. See the official README for more information" ) # Build and assign regex matcher to VALUE key for the deprecated Operators