Class: LoggerFacade::Plugins::Logstash::LogDeviceWithoutRotation

Inherits:
LogDeviceWithRotation
  • Object
show all
Defined in:
lib/logger_facade/plugins/logstash.rb

Instance Method Summary collapse

Instance Method Details

#write(message) ⇒ Object

overrides base.write to disable log shifting



56
57
58
59
60
# File 'lib/logger_facade/plugins/logstash.rb', line 56

def write(message)
  @mutex.synchronize do
    @dev.write(message)
  end
end