We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a07ee76 commit b103d1bCopy full SHA for b103d1b
1 file changed
src/database.ts
@@ -17,6 +17,12 @@ export class Database {
17
18
constructor(context: vscode.ExtensionContext) {
19
this.context = context;
20
+ // Log the storage URI path
21
+ const storagePath = this.context.storageUri?.fsPath;
22
+ if (storagePath) {
23
+ console.log('Extension Data Storage Path:', storagePath);
24
+ //vscode.window.showInformationMessage(`Data is stored at: ${storagePath}`);
25
+ }
26
}
27
28
async addEntry(date: Date, project: string, timeSpent: number) {
0 commit comments