We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec1057e commit 9f36c54Copy full SHA for 9f36c54
infra/lib/infra/event_store.rb
@@ -80,7 +80,9 @@ class << default_mapper_instance
80
alias_method :original_event_to_record, :event_to_record
81
82
def event_to_record(domain_event)
83
+ puts "[DEBUG] Before transformation - Event timestamp: #{domain_event.timestamp}"
84
record = original_event_to_record(domain_event)
85
+ puts "[DEBUG] After transformation - Record timestamp: #{record.timestamp}"
86
if record.timestamp.nil?
87
puts "[ERROR] Record created with nil timestamp!"
88
puts "[ERROR] Event class: #{domain_event.class.name}"
0 commit comments