Skip to content

Commit e366687

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

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

forward_engineering/api.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ module.exports = {
1212
callback(null, '');
1313
},
1414
applyToInstance(connectionInfo, logger, callback, app) {
15-
logger.clear();
16-
logger.log('info', connectionInfo, 'connectionInfo', connectionInfo.hiddenKeys);
17-
1815
applyToInstanceHelper
1916
.applyToInstance(connectionInfo, logger, app)
2017
.then(result => {

reverse_engineering/api.js

Lines changed: 0 additions & 11 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 mysqlHelper = require('./helpers/mysqlHelper');
53

@@ -30,11 +28,7 @@ module.exports = {
3028
hiddenKeys: connectionInfo.hiddenKeys,
3129
logger,
3230
});
33-
3431
try {
35-
logger.clear();
36-
logger.log('info', connectionInfo, 'connectionInfo', connectionInfo.hiddenKeys);
37-
3832
const sshService = app.require('@hackolade/ssh-service');
3933

4034
const connection = await this.connect(connectionInfo, sshService);
@@ -66,8 +60,6 @@ module.exports = {
6660
});
6761

6862
try {
69-
logger.clear();
70-
logger.log('info', connectionInfo, 'connectionInfo', connectionInfo.hiddenKeys);
7163
const systemDatabases = connectionInfo.includeSystemCollection
7264
? []
7365
: ['information_schema', 'mysql', 'performance_schema'];
@@ -127,10 +119,7 @@ module.exports = {
127119
});
128120

129121
try {
130-
logger.log('info', data, 'data', data.hiddenKeys);
131-
132122
const sshService = app.require('@hackolade/ssh-service');
133-
134123
const collections = data.collectionData.collections;
135124
const dataBaseNames = data.collectionData.dataBaseNames;
136125
const connection = await this.connect(data, sshService);

0 commit comments

Comments
 (0)