We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Elasticsearch client cannot be initialized with logging enabled yet. This issue is about allowing to do so for debugging purposes.
See #2 (comment)
The text was updated successfully, but these errors were encountered:
Quick and dirty tip to achieve this temporarily in dev:
diff --git a/src/lib/vendor/psr/log/Psr/Log/NullLogger.php b/src/lib/vendor/psr/log/Psr/Log/NullLogger.php index 553a3c5..8a8c225 100644 --- a/src/lib/vendor/psr/log/Psr/Log/NullLogger.php +++ b/src/lib/vendor/psr/log/Psr/Log/NullLogger.php @@ -22,6 +22,7 @@ class NullLogger extends AbstractLogger */ public function log($level, $message, array $context = array()) { + echo $message; // noop } }
Sorry, something went wrong.
No branches or pull requests
The Elasticsearch client cannot be initialized with logging enabled yet. This issue is about allowing to do so for debugging purposes.
See #2 (comment)
The text was updated successfully, but these errors were encountered: