Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 330cec3

Browse files
authored
Remove errant console.logs (#1079)
* get the loopback adapter up and working * updates to unit test * Unit test updates * Update the composer archive create cli for better output * updates to cli * remove console.log
1 parent 5d6afaa commit 330cec3

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

packages/composer-common/lib/businessnetworkdefinition.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
'use strict';
1616

17-
// const Logger = require('./log/logger');
17+
const Logger = require('./log/logger');
1818
const ModelManager = require('./modelmanager');
1919
const Introspector = require('./introspect/introspector');
2020
const AclManager = require('./aclmanager');
@@ -30,13 +30,7 @@ const fsPath = require('path');
3030
const minimatch = require('minimatch');
3131

3232
const ENCODING = 'utf8';
33-
const LOG = {
34-
debug : function(){ console.log(arguments);},
35-
entry : function(){ console.log(arguments);},
36-
exit : function(){ console.log(arguments);},
37-
info : function(){ console.log(arguments);}
38-
39-
};// Logger.getLog('BusinessNetworkDefinition');
33+
const LOG = Logger.getLog('BusinessNetworkDefinition');
4034

4135
/**
4236
* <p>

0 commit comments

Comments
 (0)