Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

This gem simplifies and accelerates Rails application debugging by highlighting crucial information in the logs, making your debugging process faster and more effective.

License

NotificationsYou must be signed in to change notification settings

mechanicles/colorize_logs

Repository files navigation

As developers, we often deal with current controller's action, its main view page and the layout associated with it. Totrace and debug these logs information, we check the logs through our console.

However, by default, the logs are all in the same color, which makes it difficult to find the ones which we're workingon. To simplify our lives and speed up the debugging process, we want to assign different colors to these logs.This will make it much easier for us to spot the right information and save time when we're fixing issues and improvingour software.

To ease our development time, we can use this gem. It will colorize the logs for controller's action, view, layout,and etc.

colorize_logs

Build Status

Installation

Add this line to your application’s Gemfile:

gem"colorize_logs"

If bundler is not being used to manage dependencies, install the gem by executing:

$ gem install colorize_logs

Usage

Create an initializer fileconfig/initializers/colorize_logs.rb and add the following code:

# frozen_string_literal: truecolorize_logs_formatter=ColorizeLogs::Formatter.newcolorize_logs_formatter.configuredomatch(/Processing by/)do |msg|msg.redendmatch(/Rendering layout/)do |msg|msg.greenendmatch(/Rendering.*within layouts/)do |msg|msg.greenendend::Rails.logger.formatter=colorize_logs_formatter

That's it. Restart your server and you should see the logs in different colors.

Credits

This gem is inspired byShog gem. All the credits goes to the author of Shog gem.I had to create this one as original gem is not maintained anymore and I wanted minimal stuff from it.

Development

After checking out the repo, runbin/setup to install dependencies. Then, runrake test to run the tests. You canalso runbin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, runbundle exec rake install. To release a new version, update theversion number inversion.rb, and then runbundle exec rake release, which will create a git tag for the version,push git commits and the created tag, and push the.gem file torubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub athttps://github.com/mechanicles/colorize_logs. This project isintended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to thecode of conduct.

License

The gem is available as open source under the terms of theMIT License.

About

This gem simplifies and accelerates Rails application debugging by highlighting crucial information in the logs, making your debugging process faster and more effective.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp