- Added a debug system

This commit is contained in:
Tristan B. Velloza Kildaire 2023-05-04 15:12:27 +02:00
parent 4e5781a020
commit 27a0404b84
1 changed files with 7 additions and 0 deletions

View File

@ -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..."); }
}
}