X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Ftelemetry%2Fparser.py;h=1570a4f0472b2d32c3a848d449ce855fee2deea9;hp=c6cc167066599643a85f0e72a189c5667148fe87;hb=d743892c7ea9dcae6038660b57b94c9578f7f7f4;hpb=944fdd776eb68211a3e58648d1d2ebd9a12f0636 diff --git a/resources/tools/telemetry/parser.py b/resources/tools/telemetry/parser.py index c6cc167066..1570a4f047 100644 --- a/resources/tools/telemetry/parser.py +++ b/resources/tools/telemetry/parser.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Cisco and/or its affiliates. +# Copyright (c) 2022 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -18,6 +18,7 @@ from pathlib import Path import sys from yaml import safe_load, YAMLError +from .constants import Constants class Parser: @@ -103,5 +104,5 @@ class ParserError(Exception): """ super().__init__() self.message = message - getLogger(__name__).error(self.message) - sys.exit(1) + getLogger("console_stderr").error(self.message) + sys.exit(Constants.err_telemetry_yaml)