Class: Langfuse::Client::StdoutLogDevice
- Inherits:
-
Object
- Object
- Langfuse::Client::StdoutLogDevice
- Defined in:
- lib/langfuse/client.rb
Overview
Log device that resolves $stdout at write time so output redirection (e.g. in tests) keeps working after the logger was created.
Instance Method Summary collapse
Instance Method Details
#close ⇒ Object
27 |
# File 'lib/langfuse/client.rb', line 27 def close; end |
#write(message) ⇒ Object
23 24 25 |
# File 'lib/langfuse/client.rb', line 23 def write() $stdout.write() end |