diff --git a/source/dlog/core.d b/source/dlog/core.d index 5b6189b..26a6e66 100644 --- a/source/dlog/core.d +++ b/source/dlog/core.d @@ -173,7 +173,7 @@ public class Logger * __FUNCTION__ = compile time usage function * __PRETTY_FUNCTION__ = compile time usage function (pretty) */ - public final void error(TextType...)(TextType segments, + public void error(TextType...)(TextType segments, string c1 = __FILE_FULL_PATH__, string c2 = __FILE__, ulong c3 = __LINE__, string c4 = __MODULE__, string c5 = __FUNCTION__, @@ -216,7 +216,7 @@ public class Logger * __FUNCTION__ = compile time usage function * __PRETTY_FUNCTION__ = compile time usage function (pretty) */ - public final void info(TextType...)(TextType segments, + public void info(TextType...)(TextType segments, string c1 = __FILE_FULL_PATH__, string c2 = __FILE__, ulong c3 = __LINE__, string c4 = __MODULE__, string c5 = __FUNCTION__, @@ -259,7 +259,7 @@ public class Logger * __FUNCTION__ = compile time usage function * __PRETTY_FUNCTION__ = compile time usage function (pretty) */ - public final void warn(TextType...)(TextType segments, + public void warn(TextType...)(TextType segments, string c1 = __FILE_FULL_PATH__, string c2 = __FILE__, ulong c3 = __LINE__, string c4 = __MODULE__, string c5 = __FUNCTION__, @@ -302,7 +302,7 @@ public class Logger * __FUNCTION__ = compile time usage function * __PRETTY_FUNCTION__ = compile time usage function (pretty) */ - public final void debug_(TextType...)(TextType segments, + public void debug_(TextType...)(TextType segments, string c1 = __FILE_FULL_PATH__, string c2 = __FILE__, ulong c3 = __LINE__, string c4 = __MODULE__, string c5 = __FUNCTION__,