warn instead of ignoring error

This commit is contained in:
DanielQuick
2023-11-07 13:46:44 -06:00
parent 42adcea19e
commit 19f4741cef

View File

@@ -340,7 +340,7 @@ pub fn end_frame(
); );
match result { match result {
Ok(_) => {}, Ok(_) => {},
Err(_) => {}, Err(e) => warn!("error: {}", e),
} }
} }
} }