Skip to content

Commit f93f82b

Browse files
committed
fixing logging issue
1 parent 3e3a351 commit f93f82b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

webui/src/js/viewModels/model-design-view.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function(accUtils, i18n, ko, project, urlCatalog, viewHelper, wktLogger, ViewMod
6262

6363
if (this.designer) {
6464
// Do not stringify the dataProvider to the log since it may contain credentials...
65-
wktLogger.debug('disconnected() dataProvider = %s', this.dataProvider);
65+
wktLogger.debug('disconnected() dataProvider');
6666
this.designer.deactivateProvider(this.dataProvider);
6767
this.designer.removeEventListener('archiveUpdated', this.archiveUpdated);
6868
}
@@ -170,7 +170,7 @@ function(accUtils, i18n, ko, project, urlCatalog, viewHelper, wktLogger, ViewMod
170170
return array1.filter(c => array2.findIndex(x => x.uid === c.uid) > -1);
171171
}
172172

173-
wktLogger.debug('Received changesAutoDownloaded event with modelContent = %s', event.detail.value);
173+
wktLogger.debug('Received changesAutoDownloaded event');
174174
this.wrcBackendTriggerChange = true;
175175
this.project.wdtModel.modelContent(event.detail.value);
176176
if (event.detail.properties) {
@@ -206,7 +206,7 @@ function(accUtils, i18n, ko, project, urlCatalog, viewHelper, wktLogger, ViewMod
206206

207207
this.archiveUpdated = (event) => {
208208
const options = event.detail.options;
209-
wktLogger.debug('Received archiveUpdated event with options = %s', JSON.stringify(event.detail.options));
209+
wktLogger.debug('Received archiveUpdated event');
210210
switch (options.operation) {
211211
case 'add':
212212
this.project.wdtModel.addArchiveUpdate(options.operation, options.archivePath, options.filePath);

0 commit comments

Comments
 (0)