Skip to content

Commit d0ab98f

Browse files
committed
Remove unnecessary console.log
1 parent da7a5b8 commit d0ab98f

File tree

1 file changed

+0
-6
lines changed
  • services/natural_language_understanding

1 file changed

+0
-6
lines changed

services/natural_language_understanding/v1.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,6 @@ module.exports = function (RED) {
197197
serviceSettings.url = endpoint;
198198
}
199199

200-
console.log('SERVICE SETTINGS:', serviceSettings);
201-
202200
nlu = new NaturalLanguageUnderstandingV1(serviceSettings);
203201

204202
var p = new Promise(function resolver(resolve, reject){
@@ -214,7 +212,6 @@ module.exports = function (RED) {
214212
}
215213

216214
if (service) {
217-
console.log('SERVICE:', service);
218215
sUsername = service.username;
219216
sPassword = service.password;
220217
sEndpoint = service.url;
@@ -241,9 +238,6 @@ module.exports = function (RED) {
241238
password = sPassword || this.credentials.password;
242239
apikey = this.credentials.apikey;
243240

244-
console.log('this', this);
245-
console.log('this.credentials', this.credentials);
246-
247241
endpoint = sEndpoint;
248242
if ((!config['default-endpoint']) && config['service-endpoint']) {
249243
endpoint = config['service-endpoint'];

0 commit comments

Comments
 (0)