Skip to content

Commit 9927844

Browse files
committed
HCK-11091: Move the log of the start to the studio
1 parent e4d16f9 commit 9927844

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

forward_engineering/api.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict';
2-
31
module.exports = {
42
generateScript(data, logger, callback, app) {
53
try {

reverse_engineering/api.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict';
2-
31
const connectionHelper = require('./helpers/connectionHelper');
42
const indexHelper = require('./helpers/indexHelper');
53
const udtHelper = require('./helpers/udtHelper');
@@ -26,9 +24,6 @@ const testConnection = async (connectionInfo, logger, callback, app) => {
2624
});
2725

2826
try {
29-
logger.clear();
30-
logger.log('info', connectionInfo, 'connectionInfo', connectionInfo.hiddenKeys);
31-
3227
log.info('Start test connection');
3328

3429
const connection = await connect(connectionInfo, sshService, log);
@@ -54,9 +49,6 @@ const getDbCollectionsNames = async (connectionInfo, logger, callback, app) => {
5449
});
5550

5651
try {
57-
logger.clear();
58-
logger.log('info', connectionInfo, 'connectionInfo', connectionInfo.hiddenKeys);
59-
6052
const connection = await connect(connectionInfo, sshService, log);
6153
const instance = connectionHelper.createInstance(connection, _);
6254

@@ -97,8 +89,6 @@ const getDbCollectionsData = async (data, logger, callback, app) => {
9789
});
9890

9991
try {
100-
logger.log('info', data, 'data', data.hiddenKeys);
101-
10292
const collections = data.collectionData.collections;
10393
const dataBaseNames = data.collectionData.dataBaseNames;
10494
const connection = await connect(data, sshService, log);

0 commit comments

Comments
 (0)