Skip to content

Commit 4aa25d0

Browse files
committed
adds a call to the sendToOutput function with the message "initiated" to log the initialization process.
1 parent 2e8839c commit 4aa25d0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Diffy.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import GitService from "./service/GitService";
66
import OpenAiService from "./service/OpenAiService";
77
import WindowService from "./service/WindowService";
88
import WorkspaceService from "./service/WorkspaceService";
9+
import { sendToOutput } from "./utils/log";
910

1011
class Diffy extends BaseDiffy {
1112
static _instance: Diffy;
@@ -34,6 +35,7 @@ class Diffy extends BaseDiffy {
3435
this.onWorkSpaceChanged();
3536
});
3637
this.isEnabled = true;
38+
sendToOutput(`initiated`);
3739
}
3840

3941
/**

0 commit comments

Comments
 (0)