Print full error chain when failing to load grammar (#12744)

This commit is contained in:
Niklas Wallgren 2025-02-04 15:18:54 +01:00 committed by GitHub
parent 26db54155e
commit 1258111394
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -756,7 +756,7 @@ impl LanguageConfiguration {
let language = get_language(self.grammar.as_deref().unwrap_or(&self.language_id))
.map_err(|err| {
log::error!(
"Failed to load tree-sitter parser for language {:?}: {}",
"Failed to load tree-sitter parser for language {:?}: {:#}",
self.language_id,
err
)