Browse Source

fix(docker): remove console log

master
jamaljsr 5 years ago
parent
commit
bb5df086ef
  1. 1
      src/lib/docker/dockerService.ts

1
src/lib/docker/dockerService.ts

@ -252,7 +252,6 @@ class DockerService implements DockerLibrary {
// need to cast so typescript doesn't complain about 'implementation' // need to cast so typescript doesn't complain about 'implementation'
const node = commonNode as LightningNode | BitcoinNode; const node = commonNode as LightningNode | BitcoinNode;
const nodeDir = nodePath(network, node.implementation, node.name); const nodeDir = nodePath(network, node.implementation, node.name);
console.warn('ensureDirs', nodeDir);
await ensureDir(nodeDir); await ensureDir(nodeDir);
if (node.implementation === 'c-lightning') { if (node.implementation === 'c-lightning') {
await ensureDir(join(nodeDir, 'data')); await ensureDir(join(nodeDir, 'data'));

Loading…
Cancel
Save