
| Current Path : /var/www/html/vendor/drush/drush/src/Log/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/vendor/drush/drush/src/Log/LogLevel.php |
<?php
namespace Drush\Log;
/**
* Additional log levels that Drush uses for historical reasons.
* Standard log levels should be preferred.
*
* @deprecated Use \Psr\Log\Loglevel directly.
*/
class LogLevel extends \Psr\Log\LogLevel
{
// Things that happen early on. Like 'notice'
const BOOTSTRAP = 'bootstrap';
const PREFLIGHT = 'preflight';
// Notice that the user is cancelling an operation. Like 'warning'
const CANCEL = 'cancel';
// Various 'success' messages. Like 'notice'
const OK = 'ok';
// Highly verbose messages that are not always interesting.
// Displayed only when --debug and --verbose specified together.
const DEBUG_NOTIFY = 'debugnotify';
// Means the command was successful. Should appear at most once
// per command (perhaps more if subcommands are executed, though).
// Like 'notice'.
const SUCCESS = 'success';
// Batch processes. Like 'notice'
const BATCH = 'batch';
}