Skip to content

Commit

Permalink
Fix active bundle logs (#1528)
Browse files Browse the repository at this point in the history
## Changes

We were using winston API incorrectly there

## Tests

<!-- How is this tested? -->
  • Loading branch information
ilia-db authored Jan 24, 2025
1 parent 4f9397c commit 74a431e
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,9 @@ export class WorkspaceFolderManager implements Disposable {
this._activeWorkspaceFolder = folder;
}
}
this.logger.log("Active project:", this._activeProjectUri?.fsPath);
this.logger.log(
"Active workspace:",
this._activeWorkspaceFolder?.uri.fsPath
this.logger.info(`Active project: ${this._activeProjectUri?.fsPath}`);
this.logger.info(
`Active workspace: ${this._activeWorkspaceFolder?.uri.fsPath}`
);

this.disposables.push(
Expand Down

0 comments on commit 74a431e

Please sign in to comment.