
Monitoring & Logging
Rails.logger, log levels, Sentry, New Relic, ActiveSupport::Notifications, tracing, correlation IDs, observability
1What is the default logger used in a Rails application?
What is the default logger used in a Rails application?
답변
Rails uses Rails.logger as the main access point to the logging system. By default, it is an instance of ActiveSupport::Logger that writes to files like log/development.log, log/production.log, etc., depending on the environment. This logger is automatically configured at application startup and is accessible from anywhere in the Rails code.
2What are the five log levels available in Rails, from least to most critical?
What are the five log levels available in Rails, from least to most critical?
답변
Rails uses five standard log levels: debug (detailed information for development), info (general operational information), warn (non-blocking warnings), error (recoverable errors), and fatal (critical errors causing shutdown). Each level filters out lower-level messages, allowing verbosity adjustment based on environment.
3How to configure the log level in production in Rails?
How to configure the log level in production in Rails?
답변
The production log level is configured in config/environments/production.rb via config.log_level. The default value is :info to avoid generating too much data in production. It is also possible to set the level dynamically via an environment variable like ENV.fetch('RAILS_LOG_LEVEL', 'info').to_sym for maximum flexibility without redeployment.
How to log a message with structured data in Rails to facilitate analysis?
What is the difference between Rails.logger.debug and Rails.logger.debug { } with a block?
+17 면접 질문