1. Go to this page and download the library: Download forseti/logger library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
forseti / logger example snippets
putenv('FORSETI_SENTRY_DNS=<DNS_SENTRY>');
putenv('FORSETI_SENTRY_LOGGER_LEVEL='.\Monolog\Logger::ERROR); //nível do erro a ser reportado
putenv('FORSETI_SENTRY_TIMEOUT=10'); //tempo timeout do sentry
//utilizando o curl do linux para enviar o log de erro (envio em background)
//quando essa opção é usada a opção FORSETI_SENTRY_TIMEOUT não tem efeito (limitação do sentry client sdk)
putenv('FORSETI_SENTRY_CURL_METHOD=exec');
//default: utilizando o curl do PHP para enviar o log de erro
putenv('FORSETI_SENTRY_CURL_METHOD=sync');
$app = new \Symfony\Component\Console\Application('Portal', '1.0.0');
$app->setCatchExceptions(false);