Skip to content

Instantly share code, notes, and snippets.

@refactor8
Forked from kinopyo/custom_logger.rb
Created August 21, 2017 13:55
Show Gist options
  • Save refactor8/32abc8edeccb5b572544f534eca24757 to your computer and use it in GitHub Desktop.
Save refactor8/32abc8edeccb5b572544f534eca24757 to your computer and use it in GitHub Desktop.
Custom logger file in Rails
# lib/custom_logger.rb
class CustomLogger < Logger
def format_message(severity, timestamp, progname, msg)
"#{timestamp.to_formatted_s(:db)} #{severity} #{msg}\n"
end
end
logfile = File.open("#{Rails.root}/log/custom.log", 'a') # create log file
logfile.sync = true # automatically flushes data to file
CUSTOM_LOGGER = CustomLogger.new(logfile) # constant accessible anywhere
# in development.rb
require "custom_logger"
# in controller files
CUSTOM_LOGGER.info("info from custom logger")
CUSTOM_LOGGER.debug("debug from custom logger")
CUSTOM_LOGGER.error("error from custom logger")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment