fix: update output channel creation to include specific ID for frontmatter project #1006

This commit is contained in:
Elio Struyf
2026-03-14 10:50:32 +01:00
parent 7847464899
commit 13a80b33e3
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export class Logger {
private constructor() {
const displayName = Extension.getInstance().displayName;
Logger.channel = window.createOutputChannel(displayName);
Logger.channel = window.createOutputChannel(displayName, 'frontmatter.project.output');
commands.registerCommand(COMMAND_NAME.showOutputChannel, () => {
Logger.channel?.show();
});