stephane888 / debug
debug php drupal
2.0.7
2024-05-28 13:27 UTC
Requires
- kint-php/kint: ^5.0
- monolog/monolog: ^3.4
- phpmailer/phpmailer: ^6.5
- symfony/stopwatch: ^5|^6
README
Help to debug code.
installation
composer require habeuk/debug
Author
Provide by habeuk.comUsage
You have to setup smtp parameters if you want to send logs by mail
DebugLogger::$smtpSettings['host'] = '';
DebugLogger::$smtpSettings['sender'] = "";
DebugLogger::$smtpSettings['sender_name'] = '';
DebugLogger::$smtpSettings['port'] = 587;
DebugLogger::$smtpSettings['user_name'] = "";
DebugLogger::$smtpSettings['password'] = "";
DebugLogger::$smtpSettings['recipients'] = ['email1', 'email2']
DebugLogger::$logDir = "log path"; // The path where you want to save the log files