Home
last modified time | relevance | path

Searched refs:Log (Results 51 – 75 of 227) sorted by last modified time

12345678910

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClient.php18 use Psr\Log\LoggerInterface;
19 use Psr\Log\NullLogger;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionInterface.php23 use Psr\Log\LoggerInterface;
H A DConnection.php45 use Psr\Log\LoggerInterface;
389 * Log a successful request
431 * Log a failed request
H A DConnectionFactory.php22 use Psr\Log\LoggerInterface;
/plugin/elasticsearch/
H A Dcomposer.lock320 "Psr\\Log\\": "Psr/Log/"
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DTransport.php26 use Psr\Log\LoggerInterface;
62 * @param \Psr\Log\LoggerInterface $log Monolog logger object
H A DClientBuilder.php39 use Psr\Log\LoggerInterface;
40 use Psr\Log\NullLogger;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dlogger.asciidoc8 logger that implements the `PSR/Log` interface works.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Common/
H A DEmptyLogger.php21 use Psr\Log\AbstractLogger;
22 use Psr\Log\LoggerInterface;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md336 - ClientBuilder: setLogger() and setTracer() only accept \Psr\Log\LoggerInterface (#673) [[0270c4f]](http://github.com/elasticsearch/elasticsearch-php/commit/0270c4f)
/plugin/elasticsearch/vendor/psr/log/Psr/Log/
H A DAbstractLogger.php3 namespace Psr\Log;
H A DInvalidArgumentException.php3 namespace Psr\Log;
H A DLogLevel.php3 namespace Psr\Log;
H A DLoggerAwareInterface.php3 namespace Psr\Log;
H A DLoggerAwareTrait.php3 namespace Psr\Log;
H A DLoggerInterface.php3 namespace Psr\Log;
122 * @throws \Psr\Log\InvalidArgumentException
H A DLoggerTrait.php3 namespace Psr\Log;
139 * @throws \Psr\Log\InvalidArgumentException
H A DNullLogger.php3 namespace Psr\Log;
24 * @throws \Psr\Log\InvalidArgumentException
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md370 * Removed `\Elastica\Client::_log`, `\Elastica\Log` and the `log` configuration option. Use the `Psr\Log\LoggerInterface $logger` client argument to customize logging.
1665 - Elastica\Log implement LoggerInterface(extends Psr\Log\AbstractLogger)
1667 if use Elastica\Log inside Elastica\Client nothing more is needed
1668 if use Elastica\Log outside we need use as(https://github.com/php-fig/log) for example Elastica\Log::info($message) or Elastica\Log::log(LogLevel::INFO,$message)
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DCHANGELOG.md1 # Change Log
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc233 .`setLogger(Psr\Log\LoggerInterface $logger)`
246 .`setTracer(Psr\Log\LoggerInterface $tracer)`
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/
H A DDummyTest.php3 namespace Psr\Log\Test;
H A DLoggerInterfaceTest.php3 namespace Psr\Log\Test;
5 use Psr\Log\LoggerInterface;
6 use Psr\Log\LogLevel;
35 $this->assertInstanceOf('Psr\Log\LoggerInterface', $this->getLogger());
69 * @expectedException \Psr\Log\InvalidArgumentException
89 $dummy = $this->createPartialMock('Psr\Log\Test\DummyTest', array('__toString'));
91 $dummy = $this->getMock('Psr\Log\Test\DummyTest', array('__toString'));
H A DTestLogger.php3 namespace Psr\Log\Test;
5 use Psr\Log\AbstractLogger;
/plugin/elasticsearch/vendor/psr/log/
H A DREADME.md1 PSR Log
25 use Psr\Log\LoggerInterface;
56 implement `Psr\Log\LoggerInterface` in your code. Please read the

12345678910