We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468c4a2 commit 727da3dCopy full SHA for 727da3d
1 file changed
extensions/ql-vscode/src/databases/config/db-config-store.ts
@@ -130,10 +130,14 @@ export class DbConfigStore extends DisposableObject {
130
131
private async loadConfig(): Promise<void> {
132
if (!(await pathExists(this.configPath))) {
133
+ void this.app.logger.log(
134
+ `Creating new database config file at ${this.configPath}`,
135
+ );
136
await this.writeConfig(this.createEmptyConfig());
137
}
138
139
await this.readConfig();
140
+ void this.app.logger.log(`Database config loaded from ${this.configPath}`);
141
142
143
private async readConfig(): Promise<void> {
0 commit comments