Skip to content

Commit

Permalink
Log the complete error when refreshBlocks() fails
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jan 12, 2024
1 parent bb246c2 commit 74129b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension-support/extension-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class ExtensionManager {
dispatch.call('runtime', '_refreshExtensionPrimitives', info);
})
.catch(e => {
log.error(`Failed to refresh built-in extension primitives: ${e}`);
log.error('Failed to refresh built-in extension primitives', e);
})
);
return Promise.all(allPromises);
Expand Down

0 comments on commit 74129b7

Please sign in to comment.