Skip to content

Commit 71c6853

Browse files
committed
Show the platform to help aid any remote problem solving
1 parent 5326b17 commit 71c6853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* version.js
2020
*
2121
* DESCRIPTION
22-
* Shows the oracledb version attributes
22+
* Shows the node-oracledb version attributes
2323
*
2424
*****************************************************************************/
2525

@@ -30,7 +30,7 @@ var addonVer, clientVer, serverVer;
3030
var major, minor, update, port, portUpdate;
3131

3232
console.log("Run at: " + new Date());
33-
console.log("Node.js version: " + process.version + " (" + process.arch + ")");
33+
console.log("Node.js version: " + process.version + " (" + process.platform, process.arch + ")");
3434

3535
addonVer = oracledb.version;
3636
major = Math.floor(addonVer / 10000);

0 commit comments

Comments
 (0)