We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b795c commit a9060c6Copy full SHA for a9060c6
1 file changed
lib/ibmdb.js
@@ -39,7 +39,6 @@ module.exports = IBMDB;
39
* @constructor
40
*/
41
function IBMDB(name, settings) {
42
- debug('IBMDB constructor settings: %j', settings);
43
SQLConnector.call(this, name, settings);
44
45
// Create the Connection Pool object. It will be initialized once we
@@ -185,7 +184,6 @@ IBMDB.prototype.connect = function(cb) {
185
184
186
self.dataSource.connecting = true;
187
self.client.open(this.connStr, function(err, con) {
188
- debug('IBMDB.prototype.connect (%s) err=%j con=%j', self.connStr, err, con);
189
if (err) {
190
self.dataSource.connected = false;
191
self.dataSource.connecting = false;
0 commit comments