Type:
Module

Wraps any standard Logger object to provide tagging capabilities.

1
2
3
4
logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
logger.tagged('BCX') { logger.info 'Stuff' }                            # Logs "[BCX] Stuff"
logger.tagged('BCX', "Jason") { logger.info 'Stuff' }                   # Logs "[BCX] [Jason] Stuff"
logger.tagged('BCX') { logger.tagged('Jason') { logger.info 'Stuff' } } # Logs "[BCX] [Jason] Stuff"

This is used by the default Rails.logger as configured by Railties to make it easy to stamp log lines with subdomains, request ids, and anything else to aid debugging of multi-user production applications.

new
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::TaggedLogging

new(logger) Class Public methods

2025-01-10 15:47:30
tagged
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::TaggedLogging

tagged(*tags) Instance Public methods

2025-01-10 15:47:30
flush
  • References/Ruby on Rails/Rails/Classes/ActiveSupport/ActiveSupport::TaggedLogging

flush() Instance Public methods

2025-01-10 15:47:30