Closed rpheath closed 4 months ago
In Rails 7.1 the color(...) method no longer accepts true as the third argument for "bold". Instead, you have to pass bold: true.
color(...)
true
bold: true
The LogSubscriber in thinking-sphinx has log output using the deprecated format, which results in a billion deprecation messages in application logs.
LogSubscriber
Is it possible to make an update to address this? Thanks!
Oh! I see that PR #1252 addresses this. Any chance it will be merged/released?
Closing this as #1252 is merged (and hopefully will be released shortly!)
In Rails 7.1 the
color(...)
method no longer acceptstrue
as the third argument for "bold". Instead, you have to passbold: true
.The
LogSubscriber
in thinking-sphinx has log output using the deprecated format, which results in a billion deprecation messages in application logs.Is it possible to make an update to address this? Thanks!