Como eu aumento o nível de registro para a Puma?

7

Atualmente, estou obtendo apenas o ActiveRecord e a saída de renderização de visualização no arquivo de log do aplicativo Rails, já que mudei para o Puma da WEBrick. Eu não consegui encontrar onde posso modificar o nível de saída do log da Puma. Pensamentos?

    
por Ernie 04.12.2013 / 19:51

1 resposta

2

Em link :

The available log levels are: :debug, :info, :warn, :error, :fatal, and :unknown, corresponding to the log level numbers from 0 up to 5 respectively. To change the default log level, use

config.log_level = :warn # In any environment initializer, or
Rails.logger.level = 0   # at any time

This is useful when you want to log under development or staging, but you don't want to flood your production log with unnecessary information.

The default Rails log level is debug in all environments

    
por 19.02.2015 / 23:56