From 3bb1fdd78069b4a35cedd668fddb012b6b647976 Mon Sep 17 00:00:00 2001
From: Florian Schmaus <flow@cs.fau.de>
Date: Tue, 18 Jan 2022 14:19:23 +0100
Subject: [PATCH] [Debug] Fix log tag for SLEEP_S and WAKE_S

Log tags should not be longer than 5 characters.
---
 emper/Debug.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emper/Debug.hpp b/emper/Debug.hpp
index e2e78126..111ea7d6 100644
--- a/emper/Debug.hpp
+++ b/emper/Debug.hpp
@@ -134,9 +134,9 @@ class Logger {
 			case LogSubsystem::RUNTI:
 				return "RUNTI";
 			case LogSubsystem::SLEEP_S:
-				return "SLEEP_S";
+				return "SLEEP";
 			case LogSubsystem::WAKE_S:
-				return "WAKE_S";
+				return "WAKE ";
 			case LogSubsystem::U_B_MPSC_Q:
 				return "UBSCQ";
 			case LogSubsystem::IO:
-- 
GitLab