#消し方
どうやら表示速度等のパフォーマンスを測定するrack-mini-profilerと言うgemが標準で入っていることで表示されているみたいなので、そいつを削除かコメントアウトで非表示にできます。
Gemfile
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0' ←こいつを削除かコメントアウト。
gem 'listen', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
はぁ〜〜すっきりした〜〜〜〜〜〜。
###参考
rails6にて表示されるミリ秒を消したい
Railsのパフォーマンス調査でrack-mini-profilerを使ってみました。