mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-24 14:45:56 +00:00
Fix broken error source tracking
This commit is contained in:
@@ -84,7 +84,7 @@ fn main() {
|
|||||||
|
|
||||||
let mut current_err: &dyn Error = &*err;
|
let mut current_err: &dyn Error = &*err;
|
||||||
while let Some(source) = current_err.source() {
|
while let Some(source) = current_err.source() {
|
||||||
log::error!(" caused by {}", err);
|
log::error!(" caused by {}", source);
|
||||||
current_err = &*source;
|
current_err = &*source;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user