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
Hi, elasticsearch team,
I got a error message after upgrading version 7.2.0.
# My code $es_client = Elasticsearch::Client.new $es_client.transport.logger.level = Logger::INFO $es_client.transport.logger.formatter = proc { |s, d, p, m| "\e[2m# #{m}\n\e[0m" } # Error=> NoMethodError: undefined method `logger' for #<Elasticsearch::Transport::Client:0x00007f9dda026410>
The source code seems to have modified the original codes, I temporarily use the following method to fix!
$es_client.transport.transport.logger.level = Logger::INFO $es_client.transport.transport.logger.formatter = proc { |s, d, p, m| "\e[2m# #{m}\n\e[0m" }
Will future versions use this method?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, elasticsearch team,
I got a error message after upgrading version 7.2.0.
The source code seems to have modified the original codes,
I temporarily use the following method to fix!
Will future versions use this method?
The text was updated successfully, but these errors were encountered: