/**
  * is xdebug loaded or not
  * @static
  * @return bool
  */
 private static function isXdebug()
 {
     if (self::$_xdebug === null) {
         self::$_xdebug = extension_loaded('xdebug');
     }
     return self::$_xdebug;
 }