diff --git a/source/dante/client.d b/source/dante/client.d index 48db8aa..b265a79 100644 --- a/source/dante/client.d +++ b/source/dante/client.d @@ -8,6 +8,12 @@ import davinci; import tristanable; import tasky; + +version(dbg) +{ + import std.stdio; +} + public class DanteClient { /** @@ -70,6 +76,7 @@ public class DanteClient { /* Start the tristanable manager */ manager.start(); + version(dbg) { writeln("Dante staretd tristanable manager..."); } } }