A tool to output complex logs with minimal intrusion and smallest possible footprint in the "host" code + additional ability to aggregate separate logs.
You know how sometimes one can't see the wood for the trees? The same happens with an extensive logging, when long or even multiline logs polute your code and it's hard to see the business logic behind all the noise they create. InvisibleLogger is an attempt to solve this issue.
Add this line to your application's Gemfile:
gem 'invisible_logger'
And then execute:
$ bundle
Or install it yourself as:
$ gem install invisible_logger
Have you ever encountered the situation when you can hardly see the business logic behind the logging? Let's consider an example:
# π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§
class SomeService
def initialize(api_key, logger)
logger.info "Service β count#auth_attempt=1"
logger.info "Trying to login with the API key: #{api_key}" if ENV['DEBUG']
auth_result = ThirdPartyAPI.auth(api_key)
if auth_result[:status] == :success
@tmp_token = auth_result[:auth_token]
logger.info %W[
Service β Authentication was successful! ::
Status: #{auth_result[:status]} ::
API Version: #{auth_result[:api_version]} ::
Temporary token: #{auth_result[:auth_token]}
].join ' '
else
logger.error %W[
Service β count#auth_errors=1 ::
Authentication failed with status #{auth_result[:status]} ::
Error code: #{auth_result[:error_code]} ::
Error message: #{auth_result[:error_message]}
].join ' '
raise ThirdPartyAPIAuthError, auth_result[:error_message]
end
end
end
# π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§
With InvisibleLogger you'd be able to refactor it into something like this:
# π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§
class SomeService
include LogStencils::SomeService
def initialize(api_key, logger)
@il = InvisibleLogger.new(logger: logger, log_stencil: LOG_STENCIL)
@il.l(binding, :auth_attempt)
@il.l(binding, :debug_api_key) if ENV['DEBUG']
auth_result = ThirdPartyAPI.auth(api_key)
if auth_result[:status] == :success
@tmp_token = auth_result[:auth_token]
@il.l(binding, :success)
else
@il.l(binding, :failure)
raise ThirdPartyAPIAuthError, auth_result[:error_message]
end
end
end
# π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§ π§
While the log messages themselves live in a separate dedicated place (but, don't worry about loosing the context, InvisibleLogger has DEBUG mode and customisable markers for each message, plus error messages about wrong var names are quite readable):
module LogStencils
module SomeService
LOG_STENCIL = {
auth_attempt: {
level: :info,
template: <<~LOG
Service β count#auth_attempt=1
LOG
},
debug_api_key: {
vars: [: api_key],
level: :info,
template: <<~LOG
Trying to login with the API key: %<api_key>s
LOG
},
success: {
vars: [
{ status: 'auth_result[:status]' },
{ api_version: 'auth_result[:api_version]' },
{ tmp_token: 'auth_result[:auth_token]' }
],
level: :info,
template: <<~LOG
Service β Authentication was successful! ::|
Status: %<status>s ::|
API Version: %<api_version>s ::|
Temporary token: %<tmp_token>s
LOG
},
failure: {
vars: [
{ status: 'auth_result[:status]' },
{ err_code: 'auth_result[:error_code]' },
{ err_msg: 'auth_result[:error_message]' }
],
level: :error,
template: <<~LOG
Service β count#auth_errors=1 ::
Authentication failed with status %<status>s ::
Error code: %<err_code>s ::
Error message: %<err_msg>s
LOG
}
}
end
end
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. 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 tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/smileart/invisible_logger. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the InvisibleLogger projectβs codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.