diff --git a/internal/simulator/parser/parser_util.go b/internal/simulator/parser/parser_util.go index 1c2b5b4..1f6cbda 100644 --- a/internal/simulator/parser/parser_util.go +++ b/internal/simulator/parser/parser_util.go @@ -9,6 +9,7 @@ import ( "strconv" "strings" "time" + _ "time/tzdata" "unicode" ) @@ -35,7 +36,7 @@ func locationNewYork() *time.Location { if locNewYork == nil { temp, err := time.LoadLocation("America/New_York") if err != nil { - log.Fatal("Unable to load new york location for parsing time") + log.Fatal("Unable to load new york location for parsing time", err) } locNewYork = temp }