We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59fe521 commit 1273210Copy full SHA for 1273210
src/gui.rs
@@ -774,10 +774,9 @@ impl MyApp {
774
775
ui.add_space(20.0);
776
ui.separator();
777
- ui.label("Debug Info:");
778
- ui.add_space(5.0);
779
-
780
- egui_logger::logger_ui().show(ui);
+ ui.collapsing("Debug logs:", |ui| {
+ egui_logger::logger_ui().show(ui);
+ });
781
});
782
}
783
@@ -839,7 +838,7 @@ impl eframe::App for MyApp {
839
838
image::ColorType::Rgba8,
840
)
841
.unwrap();
842
- eprintln!("Image saved to {path:?}.");
+ println!("Image saved to {path:?}.");
843
844
845
0 commit comments