File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
test/benchmarks/driverBench Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 22
33const MongoBench = require ( '../mongoBench' ) ;
44const os = require ( 'node:os' ) ;
5+ const util = require ( 'node:util' ) ;
56const process = require ( 'node:process' ) ;
67
78const Runner = MongoBench . Runner ;
@@ -32,7 +33,10 @@ const systemInfo = () =>
3233 `- arch: ${ os . arch ( ) } ` ,
3334 `- os: ${ process . platform } (${ os . release ( ) } )` ,
3435 `- ram: ${ platform . ram } ` ,
35- `- node: ${ process . version } \n`
36+ `- node: ${ process . version } ` ,
37+ `- driver: ${ MONGODB_DRIVER_VERSION } (${ MONGODB_DRIVER_REVISION } ): ${ MONGODB_DRIVER_PATH } ` ,
38+ ` - options ${ util . inspect ( MONGODB_CLIENT_OPTIONS ) } ` ,
39+ `- bson: ${ MONGODB_BSON_VERSION } (${ MONGODB_BSON_REVISION } ): (${ MONGODB_BSON_PATH } )\n`
3640 ] . join ( '\n' ) ;
3741console . log ( systemInfo ( ) ) ;
3842
You can’t perform that action at this time.
0 commit comments