Class: UnitF::Logging::FileWriter

Inherits:
Writer
  • Object
show all
Defined in:
lib/unitf/logging/writer.rb

Instance Attribute Summary

Attributes inherited from Writer

#name

Instance Method Summary collapse

Constructor Details

#initialize(file, max_files: 3, max_size: 1024000, name: 'none') ⇒ FileWriter

Returns a new instance of FileWriter.



30
31
32
# File 'lib/unitf/logging/writer.rb', line 30

def initialize(file, max_files: 3, max_size: 1024000, name: 'none')
  super(file, max_files: max_files, max_size: max_size, name: name)
end