Class
Device used for logging messages.
Attributes
Read
No documentation available
Read
No documentation available
Class Methods
lib/logger/log_device.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/logger/log_device.rb, line 14
def initialize(log = nil, shift_age: nil, shift_size: nil, shift_period_suffix: nil, binmode: false, reraise_write_errors: [])
@dev = @filename = @shift_age = @shift_size = @shift_period_suffix = nil
@binmode = binmode
@reraise_write_errors = reraise_write_errors
mon_initialize
set_dev(log)
if @filename
@shift_age = shift_age || 7
@shift_size = shift_size || 1048576
@shift_period_suffix = shift_period_suffix || '%Y%m%d'
unless @shift_age.is_a?(Integer)
base_time = @dev.respond_to?(:stat) ? @dev.stat.mtime : Time.now
@next_rotate_time = next_rotate_time(base_time, @shift_age)
end
end
end
No documentation available
Instance Methods
#
lib/logger/log_device.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/logger/log_device.rb, line 43
def close
begin
synchronize do
@dev.close rescue nil
end
rescue Exception
@dev.close rescue nil
end
end
No documentation available
lib/logger/log_device.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/logger/log_device.rb, line 53
def reopen(log = nil)
# reopen the same filename if no argument, do nothing for IO
log ||= @filename if @filename
if log
synchronize do
if @filename and @dev
@dev.close rescue nil # close only file opened by Logger
@filename = nil
end
set_dev(log)
end
end
self
end
No documentation available
lib/logger/log_device.rb
View on GitHub
# File tmp/rubies/ruby-3.4.1/lib/logger/log_device.rb, line 32
def write(message)
handle_write_errors("writing") do
synchronize do
if @shift_age and @dev.respond_to?(:stat)
handle_write_errors("shifting") {check_shift_log}
end
handle_write_errors("writing") {@dev.write(message)}
end
end
end
No documentation available