We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba86ee4 commit 10396cbCopy full SHA for 10396cb
system/diagnostic_graph_aggregator/tool/dump
@@ -1,6 +1,6 @@
1
#!/usr/bin/env python3
2
3
-# Copyright 2023 The Autoware Contributors
+# Copyright 2024 The Autoware Contributors
4
#
5
# Licensed under the Apache License, Version 2.0 (the "License");
6
# you may not use this file except in compliance with the License.
@@ -43,8 +43,8 @@ def get_level_text(level: int):
43
return "WARN"
44
if level == DiagnosticStatus.ERROR:
45
return "ERROR"
46
- if level == DiagnosticStatus.SATLE:
47
- return "SATLE"
+ if level == DiagnosticStatus.STALE:
+ return "STALE"
48
return "-----"
49
50
0 commit comments