MrLogaLoga is a logger for Ruby that allows you to easily attach contextual information to your log messages. When writing logs, messages only tell half the story. MrLogaLoga allows you to make the most of your logs.
logger.info('message', user: 'name', data: 1)
# I, [2022-01-01T12:00:00.000000 #19074] INFO -- Main: message user=user data=1
You can find out more about the motivation behind the project here. For usage read Usage or Advanced Usage.
Note: This gem is in early development. Try it out and leave some feedback, it really goes a long way in helping me out with development. Any feature request or bug report is welcome. If you like this project, leave a star to show your support! β
Add this line to your application's Gemfile:
gem 'mr_loga_loga'
And then execute:
bundle install
MrLogaLoga provides the same interface as the Ruby default logger you are used to. In addition, however, you can attach contextual information to your log messages.
require 'mr_loga_loga'
logger = MrLogaLoga::Logger.new
logger.info('message', user: 'name', data: 1)
# I, [2022-01-01T12:00:00.000000 #19074] INFO -- Main: message user=user data=1
logger.context(class: 'classname').warn('message')
# W, [2022-01-01T12:00:00.000000 #19074] WARN -- Main: message class=classname
To customize how log messages are formatted see [Formatters][#formatters].
MrLogaLoga provides a fluent interface to build log messages. For example, to attach an additional user
field to a log message you can use any of the following:
logger.info('message', user: 'name')
logger.context(user: 'name').info('message') # Explicit context
logger.context { { user: 'name' } }.info('message') # Block context
logger.user('name').info('message') # Dynamic context method
logger.user { 'name' }.info('message') # Dynamic context block
The block syntax is recommended when logging calculated properties . You can find more in-depth information about specific method in the Code Documentation.
If multiple log messages within the same class should share a context include the MrLogaLoga
module. Using logger
will result in the defined context being included per default:
class MyClass
include MrLogaLoga
# This is the default. You may overwrite this in your own classes
def loga_context
{ class_name: self.class.name }
end
def log
# This includes the class name in the log message now
logger.debug('debug') # debug class_name=MyClass
# Additional context will be merged
logger.debug('debug', user: 'user') # debug class_name=MyClass user=user
end
end
When used with Rails logger will default to Rails.logger
. If you use MrLogaLoga outside of Rails, you can either configure the logger instance to be used globally, or by overwriting the loga_loga
method:
# In some configuration class
MrLogaLoga.configure do |configuration|
logger = MrLogaLoga::Logger.new($stdout)
end
# In the class where you do the logging itself
class MyClass
include MrLogaLoga
def loga_loga
MrLogaLoga::Logger.new($stdout)
end
def log
# ...
end
end
MrLogaLoga uses the KeyValue formatter per default. The Json formatter is also included. To use a specific formatter pass it to the logger constructor:
MrLogaLoga::Logger.new(STDOUT, formatter: MrLogaLoga::Formatters::KeyValue.new)
You can implement and add your own formatters like so:
class MyFormatter
def call(severity, datetime, progname, message, **context)
context = context.map { |key, value| "#{key}=#{value}" }.compact.join(' ')
"#{severity} #{datetime.strftime('%Y-%m-%dT%H:%M:%S.%6N')} #{progname} #{message} #{context}"
end
end
MrLogaLoga::Logger.new(STDOUT, formatter: MyFormatter.new)
This section describes how you can use MrLogaLoga together with other well-known gems.
Using MrLogaLoga in Ruby on Rails is straightforward. Set up MrLogaLoga as logger in your application.rb
or environment files and you are off to the races:
# application.rb
config.log_formatter = MrLogaLoga::Formatters::KeyValue.new
config.logger = MrLogaLoga::Logger.new($stdout, formatter: config.log_formatter)
In order to use MrLogaLoga together with tagged logging you may have to patch ActiveSupport::TaggedLogging
:
module ActiveSupport
module TaggedLogging
module Formatter
def call(severity, time, progname, message, context)
tags = current_tags
context[:tags] = tags if tags.present?
super(severity, time, progname, message, context)
end
end
end
end
LogRage and MrLogaLoga work well together. You must set lograge to use the raw formatter, however:
Rails.application.configure do
config.lograge.enabled = true
config.lograge.formatter = Lograge::Formatters::Raw.new
end
You can use MrLogaLoga with Sidekiq by configuring it like so:
Sidekiq.configure_server do |config|
logger = MrLogaLoga::Logger.new($stdout, formatter: MrLogaLoga::Formatters::Json.new)
config.logger = logger.context { Thread.current[:sidekiq_context] || {} }
config.logger.level = Logger::INFO
# Remove existing error handlers to avoid double logging
config.error_handlers.clear
config.error_handlers << proc { |ex, context| Sidekiq.logger.warn(ex, context[:job]) }
end
If you want to use MrLogaLoga's helper methods in your workers you must include MrLogaLoga
after including Sidekiq
:
class MyWorker
include Sidekiq::Worker
include MrLogaLoga
end
The more context your logs provide, the more use you will get out of them. The standard Ruby logger only takes a string as an argument, so you have to resort to something like this:
logger.debug("my message user=#{user} more_data=#{data}")
This is fine, as long as you do not need to change your log format. Changing your log formatter will not change the format of your message, nor the formatting of the contextual information you provided.
MrLogaLoga addresses this by allowing you to attach contextual information to your logs and giving you full control over how both message and context are formatted. There are other gems doing similar things, most notably Semantic Logger. Where Semantic Logger provides lots of functionality related to logging, MrLogaLoga focuses on making it nice to write log messages - and nothing more.
This little library was inspired by Lograge first and foremost. Some inspiration was taken from ougai. I would like to thank the amazing @LenaSchnedlitz for the incredible logo! π€©
After checking out the repo, run bin/setup
to install dependencies. Then, run rake
to run the tests and linter. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Thank you for contributing! β€οΈ
We welcome all support, whether on bug reports, code, design, reviews, tests, documentation, translations, or just feature requests.
Please use GitHub issues to submit bugs or feature requests.
The gem is available as open-source under the terms of the MIT License.
Everyone interacting in the MrLogaLoga project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the code of conduct.