Class: E2B::Models::TemplateLogEntryStart

Inherits:
TemplateLogEntry show all
Defined in:
lib/e2b/models/template_log_entry.rb

Instance Attribute Summary

Attributes inherited from TemplateLogEntry

#level, #message, #timestamp

Instance Method Summary collapse

Methods inherited from TemplateLogEntry

from_hash, parse_time, strip_ansi_escape_codes, #to_s

Constructor Details

#initialize(timestamp:, message:) ⇒ TemplateLogEntryStart

Returns a new instance of TemplateLogEntryStart.



43
44
45
# File 'lib/e2b/models/template_log_entry.rb', line 43

def initialize(timestamp:, message:)
  super(timestamp: timestamp, level: "debug", message: message)
end