diff --git a/source/dlog/nu/basic.d b/source/dlog/nu/basic.d index f9e167b..1e92ade 100644 --- a/source/dlog/nu/basic.d +++ b/source/dlog/nu/basic.d @@ -13,6 +13,16 @@ public class BasicMessage : Message this.level = level; } + this() + { + + } + + public void setText(string text) + { + this.text = text; + } + public string getText() { return this.text;