(o: any)
| 682 | } |
| 683 | |
| 684 | private logObject(o: any): string { |
| 685 | if (o?.session) { |
| 686 | o = { ...o, session: `[ClientSession]` }; |
| 687 | } |
| 688 | |
| 689 | return inspect(o, { depth: 5, compact: true, breakLength: 300 }); |
| 690 | } |
| 691 | } |
| 692 | |
| 693 | /** Options shared across MongoDB query operations. */ |
no test coverage detected