]> git.mxchange.org Git - hub.git/blobdiff - inc/output.php
Code syncronized with shipsimu code base
[hub.git] / inc / output.php
index 275f13927e4cee58e17c056ad7ba0da6ac3a5064..83c1372cae33724b2be7039e772a65e2292ed75c 100644 (file)
@@ -1,12 +1,12 @@
 <?php
 /**
- * Prepares the (debug) output system
+ * Initializes the output middleware layer
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
- * @version            0.3.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.mxchange.org
+ * @link               http://www.ship-simu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
-// Debug-Ausgabe vorbereiten
-$debug = DebugMiddleware::createDebugMiddleware(FrameworkConfiguration::getInstance()->readConfig("debug_engine"));
+// Get a debugger instance
+$debug = DebugMiddleware::createDebugMiddleware(FrameworkConfiguration::getInstance()->readConfig('debug_class'));
 
-// Leere Strings werden ignoriert und sollten zum Testen der Middleware genommen werden
+// Empty string should be ignored and used for testing the middleware
 DebugMiddleware::getInstance()->output("");
 
 // [EOF]