Skip to content

Commit a9060c6

Browse files
author
Quentin Presley
authored
Remove connection string logging (#50)
1 parent 56b795c commit a9060c6

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

lib/ibmdb.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ module.exports = IBMDB;
3939
* @constructor
4040
*/
4141
function IBMDB(name, settings) {
42-
debug('IBMDB constructor settings: %j', settings);
4342
SQLConnector.call(this, name, settings);
4443

4544
// Create the Connection Pool object. It will be initialized once we
@@ -185,7 +184,6 @@ IBMDB.prototype.connect = function(cb) {
185184

186185
self.dataSource.connecting = true;
187186
self.client.open(this.connStr, function(err, con) {
188-
debug('IBMDB.prototype.connect (%s) err=%j con=%j', self.connStr, err, con);
189187
if (err) {
190188
self.dataSource.connected = false;
191189
self.dataSource.connecting = false;

0 commit comments

Comments
 (0)