Home
last modified time | relevance | path

Searched refs:EMERGENCY (Results 1 – 25 of 849) sorted by relevance

12345678910>>...34

/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/unit/includes/debug/logger/monolog/
H A DKafkaHandlerTest.php65 'level' => Logger::EMERGENCY,
101 'level' => Logger::EMERGENCY,
130 'level' => Logger::EMERGENCY,
164 'level' => Logger::EMERGENCY,
192 'level' => Logger::EMERGENCY,
198 'level' => Logger::EMERGENCY,
204 'level' => Logger::EMERGENCY,
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/unit/includes/debug/logger/monolog/
H A DKafkaHandlerTest.php67 'level' => Logger::EMERGENCY,
105 'level' => Logger::EMERGENCY,
136 'level' => Logger::EMERGENCY,
173 'level' => Logger::EMERGENCY,
204 'level' => Logger::EMERGENCY,
210 'level' => Logger::EMERGENCY,
216 'level' => Logger::EMERGENCY,
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/unit/includes/debug/logger/monolog/
H A DKafkaHandlerTest.php68 'level' => Logger::EMERGENCY,
106 'level' => Logger::EMERGENCY,
137 'level' => Logger::EMERGENCY,
174 'level' => Logger::EMERGENCY,
205 'level' => Logger::EMERGENCY,
211 'level' => Logger::EMERGENCY,
217 'level' => Logger::EMERGENCY,
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/Console/Tests/Logger/
H A DConsoleLoggerTest.php43 LogLevel::EMERGENCY => OutputInterface::VERBOSITY_NORMAL,
78 $quietMap = [LogLevel::EMERGENCY => OutputInterface::VERBOSITY_QUIET];
81 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_NORMAL, true],
90 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, false],
92 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, true, $quietMap],
133 … LogLevel::EMERGENCY => [LogLevel::EMERGENCY, 'message of level emergency with context: {user}'],
/dports/www/elgg/elgg-3.3.23/vendor/symfony/console/Tests/Logger/
H A DConsoleLoggerTest.php43 LogLevel::EMERGENCY => OutputInterface::VERBOSITY_NORMAL,
78 $quietMap = [LogLevel::EMERGENCY => OutputInterface::VERBOSITY_QUIET];
81 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_NORMAL, true],
90 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, false],
92 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, true, $quietMap],
133 … LogLevel::EMERGENCY => [LogLevel::EMERGENCY, 'message of level emergency with context: {user}'],
/dports/www/kanboard/kanboard-1.2.21/vendor/symfony/console/Tests/Logger/
H A DConsoleLoggerTest.php43 LogLevel::EMERGENCY => OutputInterface::VERBOSITY_NORMAL,
78 $quietMap = [LogLevel::EMERGENCY => OutputInterface::VERBOSITY_QUIET];
81 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_NORMAL, true],
90 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, false],
92 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, true, $quietMap],
133 … LogLevel::EMERGENCY => [LogLevel::EMERGENCY, 'message of level emergency with context: {user}'],
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/Console/Tests/Logger/
H A DConsoleLoggerTest.php43 LogLevel::EMERGENCY => OutputInterface::VERBOSITY_NORMAL,
78 $quietMap = [LogLevel::EMERGENCY => OutputInterface::VERBOSITY_QUIET];
81 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_NORMAL, true],
90 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, false],
92 [LogLevel::EMERGENCY, OutputInterface::VERBOSITY_QUIET, true, $quietMap],
133 … LogLevel::EMERGENCY => [LogLevel::EMERGENCY, 'message of level emergency with context: {user}'],
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/apprise/plugins/
H A DNotifyProwl.py40 EMERGENCY = 2 variable in ProwlPriority
48 ProwlPriority.EMERGENCY,
237 ProwlPriority.EMERGENCY: 'emergency',
286 'e': ProwlPriority.EMERGENCY,
291 'em': ProwlPriority.EMERGENCY,
297 '2': ProwlPriority.EMERGENCY,
H A DNotifyGrowl.py54 EMERGENCY = 2 variable in GrowlPriority
62 GrowlPriority.EMERGENCY,
326 GrowlPriority.EMERGENCY: 'emergency',
394 'e': GrowlPriority.EMERGENCY,
399 'em': GrowlPriority.EMERGENCY,
405 '2': GrowlPriority.EMERGENCY,
H A DNotifyPushover.py51 EMERGENCY = 2 variable in PushoverPriority
110 PushoverPriority.EMERGENCY,
275 if self.priority == PushoverPriority.EMERGENCY:
348 if self.priority == PushoverPriority.EMERGENCY:
518 PushoverPriority.EMERGENCY: 'emergency',
530 if self.priority == PushoverPriority.EMERGENCY:
571 'e': PushoverPriority.EMERGENCY,
H A DNotifyOpsgenie.py101 EMERGENCY = 5 variable in OpsgeniePriority
109 OpsgeniePriority.EMERGENCY,
458 OpsgeniePriority.EMERGENCY: 'emergency',
540 'e': OpsgeniePriority.EMERGENCY,
545 'em': OpsgeniePriority.EMERGENCY,
551 '5': OpsgeniePriority.EMERGENCY,
556 'p5': OpsgeniePriority.EMERGENCY,
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/monolog/monolog/tests/Monolog/Handler/
H A DPushoverHandlerTest.php31 $this->handler->setHighPriorityLevel(Logger::EMERGENCY); // skip priority notifications
62 $this->handler->setHighPriorityLevel(Logger::EMERGENCY); // skip priority notifications
74 $this->handler->setHighPriorityLevel(Logger::EMERGENCY); // skip priority notifications
97 $this->handler->handle($this->getRecord(Logger::EMERGENCY, 'test1'));
107 $this->handler->handle($this->getRecord(Logger::EMERGENCY, 'test1'));
H A DFilterHandlerTest.php33 $this->assertFalse($handler->isHandling($this->getRecord(Logger::EMERGENCY)));
62 $handler->handle($this->getRecord(Logger::EMERGENCY));
96 $levels = array(Logger::CRITICAL, Logger::ALERT, Logger::EMERGENCY);
97 $handler->setAcceptedLevels(Logger::CRITICAL, Logger::EMERGENCY);
110 $handler = new FilterHandler($test, Logger::DEBUG, Logger::EMERGENCY);
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/monolog/monolog/tests/Monolog/Handler/
H A DPushoverHandlerTest.php31 $this->handler->setHighPriorityLevel(Logger::EMERGENCY); // skip priority notifications
62 $this->handler->setHighPriorityLevel(Logger::EMERGENCY); // skip priority notifications
74 $this->handler->setHighPriorityLevel(Logger::EMERGENCY); // skip priority notifications
97 $this->handler->handle($this->getRecord(Logger::EMERGENCY, 'test1'));
107 $this->handler->handle($this->getRecord(Logger::EMERGENCY, 'test1'));
H A DFilterHandlerTest.php33 $this->assertFalse($handler->isHandling($this->getRecord(Logger::EMERGENCY)));
62 $handler->handle($this->getRecord(Logger::EMERGENCY));
96 $levels = array(Logger::CRITICAL, Logger::ALERT, Logger::EMERGENCY);
97 $handler->setAcceptedLevels(Logger::CRITICAL, Logger::EMERGENCY);
110 $handler = new FilterHandler($test, Logger::DEBUG, Logger::EMERGENCY);
/dports/games/hedgewars-server/hedgewars-src-1.0.0/gameServer/_cabal_deps/hslogger-1.3.1.0/contrib/java/org/haskell/hslogger/
H A DHsloggerLevel.java43 public static final HsloggerLevel EMERGENCY = new HsloggerLevel(EMERGENCY_INT, "EMERGENCY", 0); field in HsloggerLevel
63 return EMERGENCY; in toLevel()
104 list.add(EMERGENCY); in getAllPossibleLevels()
120 return EMERGENCY; in toLevel()
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/hslogger-1.3.1.0/contrib/java/org/haskell/hslogger/
H A DHsloggerLevel.java43 public static final HsloggerLevel EMERGENCY = new HsloggerLevel(EMERGENCY_INT, "EMERGENCY", 0); field in HsloggerLevel
63 return EMERGENCY; in toLevel()
104 list.add(EMERGENCY); in getAllPossibleLevels()
120 return EMERGENCY; in toLevel()
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/hslogger-1.3.1.0/contrib/java/org/haskell/hslogger/
H A DHsloggerLevel.java43 public static final HsloggerLevel EMERGENCY = new HsloggerLevel(EMERGENCY_INT, "EMERGENCY", 0); field in HsloggerLevel
63 return EMERGENCY; in toLevel()
104 list.add(EMERGENCY); in getAllPossibleLevels()
120 return EMERGENCY; in toLevel()
/dports/www/ilias/ILIAS-5.4.25/Services/Logging/classes/public/
H A Dclass.ilLogLevel.php24 const EMERGENCY = 600; define in ilLogLevel
40 self::EMERGENCY,
64 self::EMERGENCY => $lng->txt('log_level_emergency'),
/dports/www/ilias6/ILIAS-6.14/Services/Logging/classes/public/
H A Dclass.ilLogLevel.php24 const EMERGENCY = 600; define in ilLogLevel
40 self::EMERGENCY,
64 self::EMERGENCY => $lng->txt('log_level_emergency'),
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Log/
H A DLogLevel.php30 const EMERGENCY = 0; define in TYPO3\\CMS\\Core\\Log\\LogLevel
102 self::EMERGENCY => 'EMERGENCY',
133 …return \TYPO3\CMS\Core\Utility\MathUtility::isIntegerInRange($level, self::EMERGENCY, self::DEBUG);
H A DLogger.php46 protected $minimumLogLevel = LogLevel::EMERGENCY;
141 …for ($logLevelWhichTriggersWriter = LogLevel::EMERGENCY; $logLevelWhichTriggersWriter <= $minimumL…
174 …for ($logLevelWhichTriggersProcessor = LogLevel::EMERGENCY; $logLevelWhichTriggersProcessor <= $mi…
261 return $this->log(LogLevel::EMERGENCY, $message, $data);
/dports/www/nextcloud/nextcloud/apps-pkg/circles/vendor/artificial-owl/my-small-php-tools/lib/Traits/Nextcloud/nc20/
H A DTNC20Logger.php51 static $EMERGENCY = 4; variable
102 if ($level === self::$EMERGENCY) {
126 $this->log(self::$EMERGENCY, '[emergency] ' . $message, $trace, $serializable);
199 if ($level === self::$EMERGENCY) {
/dports/www/joomla3/joomla3-3.9.24/libraries/src/Application/
H A DDaemonApplication.php161 \JLog::add('Cannot find the application instance.', \JLog::EMERGENCY);
505 \JLog::add($this->name . ' daemon is still running. Exiting the application.', \JLog::EMERGENCY);
537 \JLog::add('Unable to fork.', \JLog::EMERGENCY);
545 \JLog::add('The process id is invalid; the fork failed.', \JLog::EMERGENCY);
556 …Unable to write the pid file at: ' . $this->config->get('application_pid_file'), \JLog::EMERGENCY);
706 \JLog::add(sprintf('Unable to reroute signal handler: %s', $signal), \JLog::EMERGENCY);
782 \JLog::add('The process id is invalid.', \JLog::EMERGENCY);
/dports/devel/smc/smc_4_3_0/examples/Ruby/EX7/
H A Dtelephone.rb50 EMERGENCY = 3 constant in Telephone
201 if callType == EMERGENCY then
202 route = EMERGENCY
366 if route == EMERGENCY then

12345678910>>...34