Skip to content

Commit

Permalink
warn instead of ignoring error
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielQuick committed Nov 7, 2023
1 parent 42adcea commit 19f4741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ pub fn end_frame(
);
match result {
Ok(_) => {},
Err(_) => {},
Err(e) => warn!("error: {}", e),
}
}
}
Expand Down

0 comments on commit 19f4741

Please sign in to comment.