Class: ActiveSupport::BufferedLogger
- Includes:
- Severity
- Defined in:
- lib/active_support/buffered_logger.rb
Overview
Inspired by the buffered logger idea by Ezra
Defined Under Namespace
Modules: Severity
Constant Summary collapse
- MAX_BUFFER_SIZE =
1000
Constants included from Severity
Severity::DEBUG, Severity::ERROR, Severity::FATAL, Severity::INFO, Severity::UNKNOWN, Severity::WARN
Instance Attribute Summary collapse
-
#auto_flushing ⇒ Object
Returns the value of attribute auto_flushing.
-
#level ⇒ Object
Returns the value of attribute level.
Instance Method Summary collapse
- #add(severity, message = nil, progname = nil, &block) ⇒ Object
- #close ⇒ Object
- #flush ⇒ Object
-
#initialize(log, level = DEBUG) ⇒ BufferedLogger
constructor
A new instance of BufferedLogger.
-
#silence(temporary_level = ERROR) ⇒ Object
Silences the logger for the duration of the block.
-
#silencer ⇒ Object
:singleton-method: Set to false to disable the silencer.
Constructor Details
#initialize(log, level = DEBUG) ⇒ BufferedLogger
Returns a new instance of BufferedLogger.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/active_support/buffered_logger.rb', line 39 def initialize(log, level = DEBUG) @level = level @buffer = {} @auto_flushing = 1 @guard = Mutex.new if log.respond_to?(:write) @log = log elsif File.exist?(log) @log = open(log, (File::WRONLY | File::APPEND)) @log.sync = true else FileUtils.mkdir_p(File.dirname(log)) @log = open(log, (File::WRONLY | File::APPEND | File::CREAT)) @log.sync = true @log.write("# Logfile created on %s" % [Time.now.to_s]) end end |
Instance Attribute Details
#auto_flushing ⇒ Object
Returns the value of attribute auto_flushing.
37 38 39 |
# File 'lib/active_support/buffered_logger.rb', line 37 def auto_flushing @auto_flushing end |
#level ⇒ Object
Returns the value of attribute level.
36 37 38 |
# File 'lib/active_support/buffered_logger.rb', line 36 def level @level end |
Instance Method Details
#add(severity, message = nil, progname = nil, &block) ⇒ Object
58 59 60 61 62 63 64 65 66 67 |
# File 'lib/active_support/buffered_logger.rb', line 58 def add(severity, = nil, progname = nil, &block) return if @level > severity = ( || (block && block.call) || progname).to_s # If a newline is necessary then create a new message ending with a newline. # Ensures that the original message is not mutated. = "#{}\n" unless [-1] == ?\n buffer << auto_flush end |
#close ⇒ Object
108 109 110 111 112 |
# File 'lib/active_support/buffered_logger.rb', line 108 def close flush @log.close if @log.respond_to?(:close) @log = nil end |
#flush ⇒ Object
95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/active_support/buffered_logger.rb', line 95 def flush @guard.synchronize do unless buffer.empty? old_buffer = buffer @log.write(old_buffer.join) end # Important to do this even if buffer was empty or else @buffer will # accumulate empty arrays for each request where nothing was logged. clear_buffer end end |
#silence(temporary_level = ERROR) ⇒ Object
Silences the logger for the duration of the block.
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/active_support/buffered_logger.rb', line 23 def silence(temporary_level = ERROR) if silencer begin old_logger_level, self.level = level, temporary_level yield self ensure self.level = old_logger_level end else yield self end end |
#silencer ⇒ Object
:singleton-method: Set to false to disable the silencer
19 |
# File 'lib/active_support/buffered_logger.rb', line 19 cattr_accessor :silencer |