class Console::Compatible::Logger::LogDevice
A compatible log device which can be used with {Console}. Suitable for use with code which (incorrectly) assumes that the log device a public interface and has certain methods/behaviours.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/compatible/logger.rb, line 19 def initialize(subject, output) @subject = subject @output = output end
Create a new log device.
@parameter subject [String] The subject of the log messages. @parameter output [Console::Interface] The output interface.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/compatible/logger.rb, line 35 def call(*arguments, **options) @output.call(*arguments, **options) end
Log a message with the given severity.
@paraemter arguments [Array] The arguments to log. @parameter options [Hash] Additional options.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/compatible/logger.rb, line 44 def close end
Close the log device. This is a no-op.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/compatible/logger.rb, line 40 def reopen end
Reopen the log device. This is a no-op.
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/compatible/logger.rb, line 27 def write(message) @output.call(@subject, message) end
Write a message to the log device.
@parameter message [String] The message to write.