Home
last modified time | relevance | path

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

1234

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dlogger.asciidoc6 implementation, install it, then enable the logger in the Client. The
7 recommended logger is https://github.com/Seldaek/monolog[Monolog], but any
8 logger that implements the `PSR/Log` interface works.
31 Once Monolog (or another logger) is installed, you need to create a log object
39 $logger = new Logger('name');
40 $logger->pushHandler(new StreamHandler('path/to/your.log', Logger::WARNING));
43 ->setLogger($logger) // Set your custom logger
H A Drelease-notes.asciidoc57 * Added port in url for trace and logger messages
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php73 private $logger; variable in Elasticsearch\\ClientBuilder
357 * @param LoggerInterface $logger
359 public function setLogger(LoggerInterface $logger): ClientBuilder argument
361 $this->logger = $logger;
654 $this->connectionFactory = new ConnectionFactory($this->handler, $this->connectionParams, $this->serializer, $this->logger, $this->tracer);
704 if (is_null($this->logger)) {
705 $this->logger = new NullLogger();
738 $this->transport = new Transport($this->retries, $this->connectionPool, $this->logger, $this->sniffOnStart);
772 $this->logger
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionFactory.php39 private $logger; variable in Elasticsearch\\Connections\\ConnectionFactory
51 public function __construct(callable $handler, array $connectionParams, SerializerInterface $serializer, LoggerInterface $logger, LoggerInterface $tracer) argument
55 $this->logger = $logger;
67 $this->logger,
/plugin/elasticsearch/vendor/psr/log/Psr/Log/
H A DLoggerAwareInterface.php6 * Describes a logger-aware instance.
11 * Sets a logger instance on the object.
13 * @param LoggerInterface $logger
17 public function setLogger(LoggerInterface $logger); argument
H A DLoggerAwareTrait.php11 * The logger instance.
15 protected $logger; variable
18 * Sets a logger.
20 * @param LoggerInterface $logger
22 public function setLogger(LoggerInterface $logger) argument
24 $this->logger = $logger;
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php43 $logger = $this->getLogger();
44 $logger->{$level}($message, array('user' => 'Bob'));
45 $logger->log($level, $message, array('user' => 'Bob'));
73 $logger = $this->getLogger();
74 $logger->log('invalid level', 'Foo');
79 $logger = $this->getLogger();
80 $logger->info('{Message {nothing} {user} {foo.bar} a}', array('user' => 'Bob', 'foo.bar' => 'Bar'));
128 $logger = $this->getLogger();
129 $logger->warning('Random message', array('exception' => 'oops'));
130 $logger
[all...]
/plugin/elasticsearch/vendor/psr/log/
H A DREADME.md5 [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md).
7 Note that this is not a logger of its own. It is merely an interface that
8 describes a logger. See the specification for more details.
20 If you need a logger, you can use the interface like this:
29 private $logger;
31 public function __construct(LoggerInterface $logger = null)
33 $this->logger = $logger;
38 if ($this->logger) {
39 $this->logger
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md325 * Fix issue in `\Elastica\Client::request()` which causes request data to not be sent to the logger [#1682](https://github.com/ruflin/Elastica/pull/1682)
370 * Removed `\Elastica\Client::_log`, `\Elastica\Log` and the `log` configuration option. Use the `Psr\Log\LoggerInterface $logger` client argument to customize logging.
834 - Configuring the logger in \Elastica\Client $config constructor is deprecated and will be removed. Use the $logger argument instead. [#1069](https://github.com/ruflin/Elastica/pull/1069)
1467 - Changed logger default log level to debug from info
1664 - add support PSR-3(https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)
/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/fetchmedia/
H A Dwebpack.config.js33 logger: str => console.log(`>> ${str}`),
/plugin/flowplay/flowplayer/
H A DREADME.txt198 * Luminic Box logger (http://luminicbox.com)
/plugin/jcapture/lib/
H A Dcommons-logging-1.1.1.jar ... <init> (org.apache.log4j.Logger) org.apache.log4j.Logger logger public ...
/plugin/jdraw/lib/
H A Dcommons-logging-1.1.1.jar ... <init> (org.apache.log4j.Logger) org.apache.log4j.Logger logger public ...
H A Djgraphx.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DTwigFormulaLoader.php26 private $logger; variable in Assetic\\Extension\\Twig\\TwigFormulaLoader
28 public function __construct(\Twig_Environment $twig, LoggerInterface $logger = null) argument
31 $this->logger = $logger;
40 if ($this->logger) {
41 …$this->logger->error(sprintf('The template "%s" contains an error: %s', $resource, $e->getMessage(…
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Cache/
H A DAbstractCache.php21 private $logger = null; variable in Mustache_Cache_AbstractCache
30 return $this->logger;
38 public function setLogger($logger = null) argument
40 …if ($logger !== null && !($logger instanceof Mustache_Logger || is_a($logger, 'Psr\\Log\\LoggerInt…
44 $this->logger = $logger;
56 if (isset($this->logger)) {
57 $this->logger->log($level, $message, $context);
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DEngine.php54 private $logger; variable in Mustache_Engine
453 public function setLogger($logger = null) argument
455 …if ($logger !== null && !($logger instanceof Mustache_Logger || is_a($logger, 'Psr\\Log\\LoggerInt…
460 $this->getCache()->setLogger($logger);
463 $this->logger = $logger;
473 return $this->logger;
561 if (isset($this->logger) && $cache->getLogger() === null) {
825 if (isset($this->logger)) {
826 $this->logger->log($level, $message, $context);
/plugin/letsencrypt/
H A DLescript.php382 if($this->logger) {
383 $this->logger->info($message);
H A Dhelper.php21 protected $logger; variable in helper_plugin_letsencrypt
27 $this->logger = new NullLogger();
34 $this->logger = new HTMLLogger();
42 $this->logger = new CliLogger($cli);
173 $lescript = new Lescript($this->getCertDir(), $this->getRoot(), $this->logger);
189 $lescript = new Lescript($this->getCertDir(), $this->getRoot(), $this->logger);
215 $lescript = new Lescript($this->getCertDir(), $this->getRoot(), $this->logger);
/plugin/letsencrypt/classes/
H A DLescript.php13 public function __construct($certificatesDir, $webRootDir, $logger) { argument
18 parent::__construct($certificatesDir, $webRootDir, $logger, $client);
/plugin/logger/
H A DREADME.md7 https://www.dokuwiki.org/plugin:logger
10 lib/plugins/logger/ - if the folder is called different it
H A Dplugin.info.txt1 base logger
7 url https://www.dokuwiki.org/plugin:logger
/plugin/ocr/
H A Dscript.js17 { logger: m => console.log(m) }
/plugin/passpolicy/
H A D10k-common-passwords.txt6900 logger

1234