We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c29e6e commit f3a50f4Copy full SHA for f3a50f4
client/src/addon_manager/models/addon.ts
@@ -170,10 +170,12 @@ export class Addon {
170
uri: folder.uri,
171
},
172
]);
173
- if (configValues.settings)
+ if (configValues.settings) {
174
await applyAddonSettings(folder, configValues.settings);
175
+ localLogger.info(`Applied addon settings for ${this.name}`);
176
+ }
177
} catch (e) {
- localLogger.warn(`Failed to apply settings of "${this.name}"`);
178
+ localLogger.warn(`Failed to apply settings of "${this.name}" due to ${e}`);
179
return;
180
}
181
0 commit comments