Skip to content

Commit e4174e5

Browse files
authored
fix: throws the full Error message when the Extension load exception (#729)
1 parent 9fd7f46 commit e4174e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ide/src/services/extensionService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export class ExtensionService implements IExtensionService {
179179
// Then activate
180180
this.activate(unloadExtensions);
181181
} catch (e) {
182-
logger.error(ErrorMsg.LoadExtensionFail);
182+
logger.error(ErrorMsg.LoadExtensionFail, e);
183183
}
184184
}
185185

0 commit comments

Comments
 (0)