fix(writeapi): correct typo in console log message

This commit is contained in:
Quorafind 2025-08-25 20:46:53 +08:00
parent 9f671ab3d7
commit 5117c637b9

View file

@ -412,7 +412,7 @@ export class WriteAPI {
}
if (md.startDate !== undefined) {
(fm as any).startDate = formatDate(md.startDate);
console.log("[WriteAPI][FileSource] wrote fm.startDate", { startDate: (fm as any).startDate });
console.log("[WriteAPI][FileSource] wrote fm.startDate", { startDate: (fm as any).startDate });
}
if (md.scheduledDate !== undefined) {
(fm as any).scheduledDate = formatDate(md.scheduledDate);