show/hide this revision's text 3 Fixed bad example!

Why not just log to the Rails logs? You can use Rails.logger to write to the files in your app's log directory.

Example:

Rails.logger.warn "Login failed for user #{@user.login}"

Rails has different logging levels built in (debug, info, warn, error, and fatal), and these can be specified in your environment file. So to set logging in production mode to debug level:

config.log_level = :warn
debug
show/hide this revision's text 2 Too much use of the word 'log'

Why not just log to the Rails logs? You can use Rails.logger to log write to the log files in your app's log directory.

Example:

Rails.logger.warn "Login failed for user #{user.login}"
{@user.login}"

Rails has different logging levels built in (debug, info, warn, error, and fatal), and these can be specified in your environment file. So to set logging in production mode to debug level:

config.log_level = :warn
show/hide this revision's text 1

Why not just log to the Rails logs? You can use Rails.logger to log to the log files in your app's log directory.

Example:

Rails.logger.warn "Login failed for user #{user.login}"

Rails has different logging levels built in (debug, info, warn, error, and fatal), and these can be specified in your environment file. So to set logging in production mode to debug level:

config.log_level = :warn