$cfg->setConfigEntry('debug_html_class', 'DebugWebOutput');
// CFG: DEBUG-CONSOLE-CLASS
-$cfg->setConfigEntry('debug_console_class', 'DebugConsoleOutput');
+$cfg->setConfigEntry('debug_console_class', 'CoreFramework\Debug\Output\DebugConsoleOutput');
// CFG: DEFAULT-LANGUAGE
$cfg->setConfigEntry('default_lang', 'de'); // A two-char language string: de for german, en for english and so on
// Import framework stuff
use CoreFramework\Factory\ObjectFactory;
+use CoreFramework\Output\BaseOutput;
/**
* A general text file class
// Import framework stuff
use CoreFramework\Configuration\FrameworkConfiguration;
+use CoreFramework\Output\BaseOutput;
/**
* This class simply puts text without any HTML code out. This class is suiable
// Own namespace
namespace CoreFramework\Output\Debug;
+// Import framework stuff
+use CoreFramework\Output\BaseOutput;
+
/**
* Generic debug output class
*
namespace CoreFramework\Debug\Output;
// Import framework stuff
+use CoreFramework\Debug\Debugger;
+use CoreFramework\Output\Debug\BaseDebugOutput;
use CoreFramework\Registry\Registerable;
/**
// Own namespace
namespace CoreFramework\Output\Debug;
+// Import framework stuff
+use CoreFramework\Debug\Debugger;
+use CoreFramework\Output\Debug\BaseDebugOutput;
+
/**
* A debug output class for PHP's error_log() command
*
// Own namespace
namespace CoreFramework\Output\Debug;
+// Import framework stuff
+use CoreFramework\Debug\Debugger;
+use CoreFramework\Output\Debug\BaseDebugOutput;
+
/**
* A debug output class for the web browser
*
// Import framework stuff
use CoreFramework\Manager\ManageableApplication;
+use CoreFramework\Output\BaseOutput;
use CoreFramework\Registry\Registerable;
/**