We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e25713 commit 0d51381Copy full SHA for 0d51381
1 file changed
selenium/test/amqp.js
@@ -54,7 +54,8 @@ module.exports = {
54
})
55
log("Opening amqp connection using " + JSON.stringify(connectionOptions,
56
(key, value) => {
57
- if (key === "key") return undefined; // omit this key
+ // Omit the private key from the log output.
58
+ if (key === "key") return undefined;
59
return value;
60
}
61
))
0 commit comments