Skip to content

Commit d463181

Browse files
committed
report: use consistent format for dumpEventTime
Use the same JS-compatible format on both POSIX and Windows. PR-URL: #25751 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent cc22fd7 commit d463181

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_report.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ static void WriteNodeReport(Isolate* isolate,
247247
#ifdef _WIN32
248248
snprintf(timebuf,
249249
sizeof(timebuf),
250-
"%4d/%02d/%02d %02d:%02d:%02d",
250+
"%4d-%02d-%02dT%02d:%02d:%02dZ",
251251
tm_struct->wYear,
252252
tm_struct->wMonth,
253253
tm_struct->wDay,

0 commit comments

Comments
 (0)