HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/fabricas.colombiatrade.com.co/vendor2/consolidation/log/src/ConsoleLogLevel.php
<?php
namespace Consolidation\Log;

/**
 * Additional log levels for use in Console applications.
 *
 * ConsoleLogLevels may be used by methods of Symfony Command
 * in applications where it is known that the Consolidation logger
 * is in use.  These log levels provide access to the 'success'
 * styled output method.  Code in reusable libraries that may
 * be used with a standard Psr-3 logger should aviod using these
 * log levels.
 *
 * All ConsoleLogLevels should be interpreted as LogLevel\NOTICE.
 *
 * @author Greg Anderson <[email protected]>
 */
class ConsoleLogLevel extends \Psr\Log\LogLevel
{
    /**
     * Command successfully completed some operation.
     * Displayed at VERBOSITY_NORMAL.
     */
    const SUCCESS = 'success';
}