Home
last modified time | relevance | path

Searched refs:LogContext (Results 1 – 4 of 4) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DRemoteContentFetcher.php7 use Mpdf\Log\Context as LogContext; alias
30 $this->logger->debug(sprintf('Fetching (cURL) content of remote URL "%s"', $url), ['context' => LogContext::REMOTE_CONTENT]);
68 $this->logger->error($message, ['context' => LogContext::REMOTE_CONTENT]);
78 $this->logger->error($message, ['context' => LogContext::REMOTE_CONTENT]);
92 $this->logger->debug(sprintf('Fetching (socket) content of remote URL "%s"', $url), ['context' => LogContext::REMOTE_CONTENT]);
114 $this->logger->error(sprintf('Socket error "%s": "%s"', $errno, $errstr), ['context' => LogContext::REMOTE_CONTENT]);
H A DSizeConverter.php6 use Mpdf\Log\Context as LogContext; alias
56 $this->logger->warning(sprintf('Invalid size representation "%s"', $size), ['context' => LogContext::CSS_SIZE_CONVERSION]);
H A DMpdf.php10 use Mpdf\Log\Context as LogContext;
9480 $this->logger->debug(sprintf('PDF generated in %.6F seconds', microtime(true) - $this->time0), ['context' => LogContext::STATISTICS]);
9513 $this->logger->warning(sprintf('PDF could not be generated as it stands as a %s compliant file.', $standard), ['context' => LogContext::PDFA_PDFX]);
9514 $this->logger->warning(sprintf('These issues can be automatically fixed by mPDF using %s = true;', $option), ['context' => LogContext::PDFA_PDFX]);
9515 $this->logger->warning(sprintf('Action that mPDF will take to automatically force %s compliance are shown further in the log.', $standard), ['context' => LogContext::PDFA_PDFX]);
9519 $this->logger->warning($w, ['context' => LogContext::PDFA_PDFX]);
9525 $this->logger->debug(sprintf('Compiled in %.6F seconds', microtime(true) - $this->time0), ['context' => LogContext::STATISTICS]);
9526 $this->logger->debug(sprintf('Peak Memory usage %s MB', number_format(memory_get_peak_usage(true) / (1024 * 1024), 2)), ['context' => LogContext::STATISTICS]);
9527 $this->logger->debug(sprintf('PDF file size %s kB', number_format(strlen($this->buffer) / 1024)), ['context' => LogContext::STATISTICS]);
9528 $this->logger->debug(sprintf('%d fonts used', count($this->fonts)), ['context' => LogContext
14 use Mpdf\Log\Context as LogContext; global() alias
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DImageProcessor.php13 use Mpdf\Log\Context as LogContext;
222 $this->logger->debug(sprintf('Fetching (file_get_contents) content of file "%s" with local basepath', $file), ['context' => LogContext::REMOTE_CONTENT]);
229 $this->logger->debug(sprintf('Fetching (file_get_contents) content of file "%s" with non-local basepath', $file), ['context' => LogContext::REMOTE_CONTENT]);
1433 $this->logger->warning(sprintf('%s (%s)', $msg, $file), ['context' => LogContext::IMAGES]);
19 use Mpdf\Log\Context as LogContext; global() alias