GoggaTransform

- Updated coumentation
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-03 16:18:45 +02:00
parent f324399feb
commit 9b99ce9738
1 changed files with 3 additions and 3 deletions

View File

@ -130,17 +130,17 @@ private byte[] debugColor(string text, Level level)
{
messageBytes = cast(byte[])[27, '[','3','2','m'];
}
/* If WARN, set warning */
/* If WARN, set yellow */
else if(level == Level.WARN)
{
messageBytes = cast(byte[])[27, '[','3','1', ';', '9', '3', 'm'];
}
/* If ERROR, set error */
/* If ERROR, set red */
else if(level == Level.ERROR)
{
messageBytes = cast(byte[])[27, '[','3','1','m'];
}
/* If DEBUG, set debug */
/* If DEBUG, set pink */
else
{
messageBytes = cast(byte[])[27, '[','3','5','m'];