Skip to content

Commit 3b64efa

Browse files
committed
chore: fix comment
1 parent f45d33e commit 3b64efa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/benchmarks/driverBench/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
const MongoBench = require('../mongoBench');
44
const os = require('node:os');
5+
const util = require('node:util');
56
const process = require('node:process');
67

78
const 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');
3741
console.log(systemInfo());
3842

0 commit comments

Comments
 (0)