From 57f97f7740c72308aa98c7cd8aa50987aa50f7f4 Mon Sep 17 00:00:00 2001
From: David Trattnig <david.trattnig@o94.at>
Date: Wed, 10 Jun 2020 14:21:52 +0200
Subject: [PATCH] Make warning red.

---
 modules/core/engine.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/engine.py b/modules/core/engine.py
index a946cf3e..602d6d01 100644
--- a/modules/core/engine.py
+++ b/modules/core/engine.py
@@ -382,7 +382,7 @@ class SoundSystem():
             self.enable_transaction()
 
             if not entry.channel:
-                self.logger.warn("Trying to stop entry %s, but it has no channel assigned" % entry)
+                self.logger.warn(SimpleUtil.red("Trying to stop entry %s, but it has no channel assigned" % entry))
                 return
             
             if transition == TransitionType.FADE:
-- 
GitLab