Skip to content

Commit

Permalink
fix: throws the full Error message when the Extension load exception (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
wewoor authored May 17, 2022
1 parent 05ad264 commit 61b1753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/extensionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class ExtensionService implements IExtensionService {
// Then activate
this.activate(unloadExtensions);
} catch (e) {
logger.error(ErrorMsg.LoadExtensionFail);
logger.error(ErrorMsg.LoadExtensionFail, e);
}
}

Expand Down

0 comments on commit 61b1753

Please sign in to comment.