PHP code example of forseti / logger

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);

putenv('FORSETI_LOGGER_FILE='. __DIR__ . '/resources/log_de_test.log');

putenv('FORSETI_LOGGER_FILE_LEVEL=' . \Monolog\Logger::INFO);

putenv('FORSETI_LOGGER_FORMAT=' . "[%datetime%] %channel%.%level_name%: %message% %context% %extra%\n");

putenv('FORSETI_LOGGER_DATEFORMAT=' . 'Y-m-d H:i:s');