asgard/debug

v0.3.1 2016-05-13 11:31 UTC

This package is not auto-updated.

Last update: 2024-04-13 05:50:03 UTC


README

#Debug

The debug package helps to handle errors and display debugging information to the developer.

##Installation If you are working on an Asgard project you don't need to install this library as it is already part of the standard libraries.

composer require asgard/debug 0.*

##ErrorHandler

Register an error handler

$errorHandler = \Asgard\Debug\ErrorHandler::register();

Ignore PHP errors in a specific directory

$errorHandler->ignoreDir('libs/old_legay_package/');

Set the logger

$errorHandler->setLogger($logger);

The logger should implement \Psr\Log\LoggerInterface.

Check if the error handler has a logger

$errorHandler->isLogging();

Get the backtrace from an exception

$trace = $errorHandler->getBacktraceFromException($e);

To log PHP errors

$errorHandler->setLogPHPErrors(true);

Log an exception

$errorHandler->logException($e);

Log an error

$errorHandler->log($severity, $message, $file, $line, $trace);

Severity should be one of the these.

Activate/Desactivate debugging

$errorHandler->setDebug(true);
$errorHandler->setDebug(false);

If debug is set to true, the error handler will display a debugging page to the user when stumbling upon an error, otherwise it will be hidden.

##Debug

Display the debug screen:

\Asgard\Debug\d($var1, $var2, ...);

In an Asgard application, the global function d() is an alias of \Asgard\Debug\d:

d($var1, $var2, ...);

###Contributing

Please submit all issues and pull requests to the asgardphp/asgard repository.

License

The Asgard framework is open-sourced software licensed under the MIT license