Skip to content

Commit 61b1753

Browse files
authored
fix: throws the full Error message when the Extension load exception (#735)
1 parent 05ad264 commit 61b1753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/extensionService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export class ExtensionService implements IExtensionService {
178178
// Then activate
179179
this.activate(unloadExtensions);
180180
} catch (e) {
181-
logger.error(ErrorMsg.LoadExtensionFail);
181+
logger.error(ErrorMsg.LoadExtensionFail, e);
182182
}
183183
}
184184

0 commit comments

Comments
 (0)