Skip to content

Commit 10396cb

Browse files
committed
fix
Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
1 parent ba86ee4 commit 10396cb

File tree

1 file changed

+3
-3
lines changed
  • system/diagnostic_graph_aggregator/tool

1 file changed

+3
-3
lines changed

system/diagnostic_graph_aggregator/tool/dump

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
# Copyright 2023 The Autoware Contributors
3+
# Copyright 2024 The Autoware Contributors
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -43,8 +43,8 @@ def get_level_text(level: int):
4343
return "WARN"
4444
if level == DiagnosticStatus.ERROR:
4545
return "ERROR"
46-
if level == DiagnosticStatus.SATLE:
47-
return "SATLE"
46+
if level == DiagnosticStatus.STALE:
47+
return "STALE"
4848
return "-----"
4949

5050

0 commit comments

Comments
 (0)