diff options
author | Viliam Luc <vluc@cisco.com> | 2022-03-31 11:01:25 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2022-04-04 11:46:00 +0000 |
commit | d743892c7ea9dcae6038660b57b94c9578f7f7f4 (patch) | |
tree | 685f8fa6a141818911f8c2e34c71de2e5eb9b629 /resources/tools/telemetry/executor.py | |
parent | 944fdd776eb68211a3e58648d1d2ebd9a12f0636 (diff) |
telemetry: error message handling part2
Signed-off-by: Viliam Luc <vluc@cisco.com>
Change-Id: I4d8de4e6ccff25c0c1dcf66c192c56710939bf7d
Diffstat (limited to 'resources/tools/telemetry/executor.py')
-rw-r--r-- | resources/tools/telemetry/executor.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/resources/tools/telemetry/executor.py b/resources/tools/telemetry/executor.py index 75db4b6a40..4d335c187d 100644 --- a/resources/tools/telemetry/executor.py +++ b/resources/tools/telemetry/executor.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: @@ -20,6 +20,7 @@ import sys from .parser import Parser from .serializer import Serializer +from .constants import Constants class Executor: @@ -103,5 +104,5 @@ class ExecutorError(Exception): """ super().__init__() self.message = message - getLogger(__name__).error(message) - sys.exit(1) + getLogger("console_stderr").error(message) + sys.exit(Constants.err_telemetry_bundle) |