We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46f2e0d commit 7dd6053Copy full SHA for 7dd6053
test/tools/runner/config.ts
@@ -452,10 +452,10 @@ export class TestConfiguration {
452
'CSOT spec tests legacy timeouts behave correctly for retryable operations operation succeeds after one socket timeout - aggregate on collection'
453
];
454
455
- setupLogging(options: MongoClientOptions, s?: string) {
456
- s ??= new ObjectId().toString();
+ setupLogging(options: MongoClientOptions, id?: string) {
+ id ??= new ObjectId().toString();
457
this.logs = [];
458
- const write = log => this.logs.push({ t: log.t, s, ...log });
+ const write = log => this.logs.push({ t: log.t, id, ...log });
459
options.mongodbLogPath = { write };
460
options.mongodbLogComponentSeverities = { default: 'trace' };
461
options.mongodbLogMaxDocumentLength = 300;
0 commit comments