From ae44874671b1e0ac327652eca821f32937d052c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Wed, 22 Nov 2023 21:14:44 +0100 Subject: [PATCH] Remove debug log --- lib/lndhub.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/lndhub.js b/lib/lndhub.js index 250a67a..60cf0c1 100644 --- a/lib/lndhub.js +++ b/lib/lndhub.js @@ -36,7 +36,6 @@ export default class Lndhub { async auth (username, password) { const payload = { "login": username, "password": password }; const data = await this.callEndpoint('post', '/auth', payload); - console.log('data', data); if (data.error) { console.warn('Lndhub connection failed:', data.message);