Disable Log?

How i can disable the log of rails?

Bruno M. wrote:

How i can disable the log of rails?

You can modify the environment.rb and specify the logging level. I
don’t know all the options, but here is a sample:

config.log_level = :error

That will only log errors. I know :warn or :warning and :info are also
available. Maybe there is a :none option!

Regards,

Michael