diff --git a/source/gogga/transform.d b/source/gogga/transform.d index e7c4df2..36d850b 100644 --- a/source/gogga/transform.d +++ b/source/gogga/transform.d @@ -32,15 +32,15 @@ public class GoggaTransform : MessageTransform /* Extract the Level */ Level level = gCtx.getLevel(); - - // TODO: go for [] (/:) /** * Simple mode is just: `[] ` */ if(mode == GoggaMode.SIMPLE) { - finalOutput = cast(string)debugColor("["~to!(string)(level)~"] "~text, level); + finalOutput = cast(string)debugColor("["~to!(string)(level)~"] ", level); + + finalOutput ~= text~"\n"; } /** * TwoKTwenty3 is: `[] (:) ` @@ -56,11 +56,11 @@ public class GoggaTransform : MessageTransform finalOutput = moduleInfo~" "~funcInfo~" "~text~"\n"; } /** - * Rustacean mode + * Rustacean mode is: `[] (/:) ` */ else { - + } return finalOutput;