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
普通に narou.rb を使っている分には問題ないのですが、-W2 で警告を表示すると、warning: Narou::Logger#write is outdated interface which accepts just one argument と表示されます。
-W2
warning: Narou::Logger#write is outdated interface which accepts just one argument
推測ですが、 IO#write の引数が Ruby 2.4 まで write(str)、Ruby 2.5 から write(*str) になったことが影響しているように見えます。
IO#write
write(str)
write(*str)
修正しなくても動作しますが、一応ご報告まで。(この issue は close していただいて構いません。)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
普通に narou.rb を使っている分には問題ないのですが、
-W2
で警告を表示すると、warning: Narou::Logger#write is outdated interface which accepts just one argument
と表示されます。推測ですが、
IO#write
の引数が Ruby 2.4 までwrite(str)
、Ruby 2.5 からwrite(*str)
になったことが影響しているように見えます。修正しなくても動作しますが、一応ご報告まで。(この issue は close していただいて構いません。)
The text was updated successfully, but these errors were encountered: