Home
last modified time | relevance | path

Searched refs:logger (Results 51 – 75 of 95) sorted by relevance

1234

/plugin/smtp/subtree/txtthinking/Mailer/src/
H A DMailer.php48 public function __construct(LoggerInterface $logger=null){ argument
49 $this->smtp = new SMTP($logger);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DMetadataWriter.php41 private $logger;
43 public function __construct(Mpdf $mpdf, BaseWriter $writer, Form $form, Protection $protection, LoggerInterface $logger)
49 $this->logger = $logger;
581 $this->logger->warning('Embedded files for annotations have to be allowed explicitly with "allowAnnotationFiles" config key');
805 public function setLogger(LoggerInterface $logger)
807 $this->logger = $logger;
42 private $logger; global() variable in Mpdf\\Writer\\MetadataWriter
44 __construct(Mpdf $mpdf, BaseWriter $writer, Form $form, Protection $protection, LoggerInterface $logger) global() argument
806 setLogger(LoggerInterface $logger) global() argument
/plugin/logger/
H A DREADME.md7 https://www.dokuwiki.org/plugin:logger
10 lib/plugins/logger/ - if the folder is called different it
/plugin/fetchmedia/
H A Dwebpack.config.js33 logger: str => console.log(`>> ${str}`),
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DBREAKING_CHANGES.md31 - [#674](https://github.com/elastic/elasticsearch-php/pull/674) `ClientBuilder::defaultLogger()` method was removed. It is recommended to [create the logger object manually](https://github.com/elastic/elasticsearch-php/blob/master/docs/configuration.asciidoc#enabling-the-logger).
/plugin/jdraw/lib/
H A Dcommons-logging-1.1.1.jar ... <init> (org.apache.log4j.Logger) org.apache.log4j.Logger logger public ...
/plugin/jcapture/lib/
H A Dcommons-logging-1.1.1.jar ... <init> (org.apache.log4j.Logger) org.apache.log4j.Logger logger public ...
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dcommons-logging-1.2.jar ... <init> (org.apache.log4j.Logger) org.apache.log4j.Logger logger public ...
H A Dslf4j-api-1.7.25.jar ... java.lang.Object implements org.slf4j.Logger { String name org.slf4j.helpers.SubstituteLogger ...
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClient.php71 public function __construct($config = [], ?callable $callback = null, ?LoggerInterface $logger = null)
83 $this->_logger = $logger ?? new NullLogger();
649 * Replace the existing logger.
653 public function setLogger(LoggerInterface $logger)
655 $this->_logger = $logger;
70 __construct($config = [], callable $callback = null, LoggerInterface $logger = null) global() argument
609 setLogger(LoggerInterface $logger) global() argument
/plugin/ocr/
H A Dscript.js17 { logger: m => console.log(m) }
/plugin/diagramsnet/lib/
H A Dworkbox-bed83ea8.js.map1logger.js","../../../../../../../opt/hostedtoolcache/node/14.18.1/x64/lib/node_modules/workbox-cli…
H A Dworkbox-9fe249eb.js.map1logger.js","../../../../../../usr/local/lib/node_modules/workbox-cli/node_modules/workbox-core/mod…
H A Dworkbox-f163abaa.js.map1logger.js","../../../../../../usr/local/lib/node_modules/workbox-cli/node_modules/workbox-core/mod…
/plugin/s5reloaded/ui/effects_support/
H A Dunittest.js173 this.logger = new Test.Unit.Logger(this.options.testLog);
215 this.logger.summary(this.summary());
219 this.logger.start(test.name);
223 this.logger.message("Waiting for " + test.timeToWait + "ms");
226 this.logger.finish(test.status(), test.summary());
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DImageProcessor.php96 public $logger;
109 LoggerInterface $logger
123 $this->logger = $logger;
135 public function setLogger(LoggerInterface $logger)
137 $this->logger = $logger;
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
107 public $logger; global() variable in Mpdf\\Image\\ImageProcessor
120 __construct(Mpdf $mpdf, Otl $otl, CssManager $cssManager, SizeConverter $sizeConverter, ColorConverter $colorConverter, ColorModeConverter $colorModeConverter, Cache $cache, LanguageToFontInterface $languageToFont, ScriptToLanguageInterface $scriptToLanguage, RemoteContentFetcher $remoteContentFetcher, LoggerInterface $logger) global() argument
146 setLogger(LoggerInterface $logger) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dconfiguration.asciidoc38 include::logger.asciidoc[]
/plugin/smtp/subtree/txtthinking/Mailer/
H A DREADME.md37 $smtp = new SMTP(); // new SMTP(new Logger('Mailer')); # set logger to receive debug log
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DREADME.md11 …he [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)
14 make sure you can always use another compatible logger at a later time.
79 …ng [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)
/plugin/letsencrypt/
H A DLescript.php382 if($this->logger) {
383 $this->logger->info($message);
/plugin/upgrade/vendor/splitbrain/php-cli/
H A DREADME.md130 The CLI class is a fully PSR-3 compatible logger (printing colored log data to STDOUT and STDERR). This is useful when
138 The resulting object then can be passed as the logger instance. The difference between the two is in adjusted method signatures (with appropriate type hinting) only. Be sure you have the suggested `psr/log` composer package installed when using these classes.
140 Note: if your backend code calls for a PSR-3 logger but does not actually type check for the interface (AKA being LoggerAware only) you can also just pass an instance of `splitbrain\phpcli\CLI`.
/plugin/upgrade/
H A Dcomposer.lock90 "psr/log": "Allows you to make the CLI available as PSR-3 logger"
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php446 if (!$this->logger) {
447 $this->logger = new NullLogger();
449 return $this->logger;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc233 .`setLogger(Psr\Log\LoggerInterface $logger)`
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md374 $logger = new Monolog\Logger();
375 $tokenCallback = function ($cacheKey, $accessToken) use ($logger) {
376 $logger->debug(sprintf('new access token received at cache key %s', $cacheKey));

1234