Home
last modified time | relevance | path

Searched refs:message (Results 51 – 75 of 1663) sorted by last modified time

12345678910>>...67

/plugin/dw2pdf/vendor/psr/log/Psr/Log/
H A DNullLogger.php19 * @param string $message
26 public function log($level, $message, array $context = array()) argument
H A DLoggerInterface.php8 * The message MUST be a string or object implementing __toString().
10 * The message MAY contain placeholders in the form: {foo} where foo
25 * @param string $message
30 public function emergency($message, array $context = array()); argument
38 * @param string $message
43 public function alert($message, array $context = array()); argument
50 * @param string $message
55 public function critical($message, array $context = array()); argument
61 * @param string $message
66 public function error($message, arra argument
79 warning($message, array $context = array()) global() argument
89 notice($message, array $context = array()) global() argument
101 info($message, array $context = array()) global() argument
111 debug($message, array $context = array()) global() argument
124 log($level, $message, array $context = array()) global() argument
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DRemoteContentFetcher.php67 $message = sprintf('cURL error: "%s"', curl_error($ch));
68 $this->logger->error($message, ['context' => LogContext::REMOTE_CONTENT]);
71 throw new \Mpdf\MpdfException($message);
77 $message = sprintf('HTTP error: %d', $info['http_code']);
78 $this->logger->error($message, ['context' => LogContext::REMOTE_CONTENT]);
81 throw new \Mpdf\MpdfException($message);
/plugin/dw2pdf/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php41 public function testLogsAtAllLevels($level, $message) argument
44 $logger->{$level}($message, array('user' => 'Bob'));
45 $logger->log($level, $message, array('user' => 'Bob'));
48 $level.' message of level '.$level.' with context: Bob',
49 $level.' message of level '.$level.' with context: Bob',
57 LogLevel::EMERGENCY => array(LogLevel::EMERGENCY, 'message of level emergency with context: {user}'),
58 LogLevel::ALERT => array(LogLevel::ALERT, 'message of level alert with context: {user}'),
59 LogLevel::CRITICAL => array(LogLevel::CRITICAL, 'message of level critical with context: {user}'),
60 LogLevel::ERROR => array(LogLevel::ERROR, 'message of level error with context: {user}'),
61 LogLevel::WARNING => array(LogLevel::WARNING, 'message o
[all...]
H A DTestLogger.php30 * @method bool hasEmergencyThatContains($message)
31 * @method bool hasAlertThatContains($message)
32 * @method bool hasCriticalThatContains($message)
33 * @method bool hasErrorThatContains($message)
34 * @method bool hasWarningThatContains($message)
35 * @method bool hasNoticeThatContains($message)
36 * @method bool hasInfoThatContains($message)
37 * @method bool hasDebugThatContains($message)
39 * @method bool hasEmergencyThatMatches($message)
40 * @method bool hasAlertThatMatches($message)
69 log($level, $message, array $context = []) global() argument
102 hasRecordThatContains($message, $level) global() argument
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md22 * Compound classes selector support, like `.one.two` or `div.message.special` (#538, @peterdevpl)
756 - mPDF will check if magic_quotes_runtime set ON even >= PHP 5.3 (will now cause an error message)
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DHttpCommandExecutor.php355 $message = null;
356 if (is_array($value) && array_key_exists('message', $value)) {
357 $message = $value['message'];
372 WebDriverException::throwException($value['error'], $message, $results);
378 WebDriverException::throwException($status, $message, $results);
/plugin/combo/action/
H A Dcacheexpiration.php159 $message = "Expiration Date has expired";
164 $message);
169 $message);
178 $message);
H A Dindexer.php124 $message = "Error with the database replication for the page ($page). " . $e->getMessage();
126 throw new ExceptionCompile($message);
128 LogUtility::error($message);
H A Dmetafacebook.php205 $message = "The facebook image ($facebookImage) is too small (" . $intrinsicWidth . " x " . $intrinsicHeight . "). The minimum size constraint is 200px by 200px";
212 LogUtility::error($message, self::CANONICAL);
215 LogUtility::log2BrowserConsole($message);
219 LogUtility::error($message, self::CANONICAL);
H A Dsnippetsbootstrap.php260 $message = "The head meta (" . print_r($metaData, true) . ") does not have a content property";
261 LogUtility::error($message, self::FRONT_END_OPTIMIZATION_CANONICAL);
279 $message = "The header type ($headTagName) is unknown and was not controlled.";
281 LogUtility::error($message, self::FRONT_END_OPTIMIZATION_CANONICAL);
/plugin/combo/ComboStrap/
H A DLocalPath.php395 $message = "Bad absolute local path file ($this->path)";
397 throw new ExceptionRuntime($message);
399 LogUtility::msg($message);
446 $message = "Local Uri Path has a bad syntax ($uri)";
448 LogUtility::internalError($message);
449 throw new ExceptionRuntime($message);
H A DLogUtility.php73 * Send a message to a manager and log it
75 * @param string $message
79 public static function msg(string $message, int $level = self::LVL_MSG_ERROR, string $canonical = "support", \Exception $e = null) argument
83 self::messageNotEmpty($message);
91 self::log2FrontEnd($message, $level, $canonical);
106 self::log2file($message, $level, $canonical, $e);
112 self::throwErrorIfTest($level, $message, $e);
150 * because it throws an error message when the environment
172 * @param $message
177 public static function log2FrontEnd($message, argument
262 log2BrowserConsole($message) global() argument
274 throwErrorIfTest($level, $message, \\Exception $e = null) global() argument
290 messageNotEmpty(string $message) global() argument
310 wrapInRedForHtml(string $message) global() argument
338 error(string $message, string $canonical = self SUPPORT_CANONICAL, \\Exception $e = null) global() argument
343 warning(string $message, string $canonical = 'support', \\Exception $e = null) global() argument
348 info(string $message, string $canonical = 'support', \\Exception $e = null) global() argument
368 errorIfDevOrTest($message, $canonical = 'support') global() argument
392 internalError(string $message, string $canonical = 'support', Throwable $previous = null) global() argument
413 debug(string $message, string $canonical = self SUPPORT_CANONICAL, $e = null) global() argument
[all...]
H A DLowQualityCalculatedIndicator.php67 $message = "Error while reading the json analytics. {$e->getMessage()}";
68 LogUtility::internalError($message, self::CANONICAL);
69 throw new ExceptionNotFound($message);
H A DBrandListTag.php108 $message = "Error while rendering the brand $brandName. Error: {$e->getMessage()}";
111 $html .= "<tr><td rowspan=\"$rowSpan\" class=\"text-danger\">$message</td></tr>";
113 throw new ExceptionRuntime($message, BrandListTag::MARKUP, 0, $e);
H A DMarkupCacheDependencies.php181 $message = "$link ($dependency) was met with the primary slot ($pathAddedOrDeleted).";
185 $message
190 $message
H A DMarkupPath.php1467 $message = "Error on getParentPage, null returned - Error: {$e->getMessage()}";
1468 LogUtility::internalError($message);
1469 throw new ExceptionNotFound($message);
H A DCacheTag.php31 $message = "No markup executing. Cache expiration date could not be set";
32 LogUtility::error($message, self::MARKUP);
35 PluginUtility::EXIT_MESSAGE => $message
49 $message = "Internal Error: The cache expiration date could not be stored: {$e->getMessage()}";
50 LogUtility::error($message, self::MARKUP, $e);
52 $returnedArray[PluginUtility::EXIT_MESSAGE] = $message;
68 $message = $data[PluginUtility::EXIT_MESSAGE];
69 LogUtility::error($message, CacheExpirationFrequency::PROPERTY_NAME);
H A DCall.php434 $message = "The attributes value are not an array for the call ($this), the value was wrapped in an array";
435 LogUtility::error($message, self::CANONICAL);
H A DCanonical.php197 $message = "The url in the plugin info file seems to be broken.";
198 LogUtility::internalError($message, self::CANONICAL, $e);
199 throw new ExceptionNotFound($message);
H A DDateTag.php113 $message = "Error while formatting a date. Error: {$e->getMessage()}";
114 LogUtility::error($message, DateTag::CANONICAL);
115 return LogUtility::wrapInRedForHtml($message);
H A DExceptionNotEquals.php19 public function __construct($message = "", $canonical = "", $code = 0, Throwable $previous = null) argument
21 parent::__construct($message, $canonical, $code, $previous);
24 public static function create(string $message, $left, $right): ExceptionNotEquals argument
26 return (new ExceptionNotEquals($message))
/plugin/combo/syntax/
H A Dfrontmatter.php186 foreach ($messages as $message) {
187 $message->sendToLogUtility();
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataDateTime.php87 $message = "The date time ($this) has a default value ($defaultValue) that is not valid. Error: {$e->getMessage()}";
88 LogUtility::internalError($message);
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Exception/
H A DTokenException.php31 public function __construct(PhpCss\Scanner\Token $token, string $message) { argument
33 parent::__construct($message);

12345678910>>...67