Skip to content

Commit 0cf3d7e

Browse files
committed
chore: comment log service is complete call
1 parent f647b02 commit 0cf3d7e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/handlers/services/logsService.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -334,13 +334,13 @@ export class LogObjectBuilder {
334334
throw new Error('Cannot log from a committed log object');
335335
}
336336

337-
const result = this.isComplete(this.logData);
338-
if (!result) {
339-
const parsed = LogObjectSchema.safeParse(this.logData);
340-
if (!parsed.success) {
341-
console.error('Log data is not complete', parsed.error.issues);
342-
}
343-
}
337+
// const result = this.isComplete(this.logData);
338+
// if (!result) {
339+
// const parsed = LogObjectSchema.safeParse(this.logData);
340+
// if (!parsed.success) {
341+
// console.error('Log data is not complete', parsed.error.issues);
342+
// }
343+
// }
344344

345345
// Update execution time if we have a createdAt
346346
if (this.logData.createdAt && this.logData.createdAt instanceof Date) {

0 commit comments

Comments
 (0)