Skip to content

Commit 1273210

Browse files
committed
debug logs as collapsing item
1 parent 59fe521 commit 1273210

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/gui.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -774,10 +774,9 @@ impl MyApp {
774774

775775
ui.add_space(20.0);
776776
ui.separator();
777-
ui.label("Debug Info:");
778-
ui.add_space(5.0);
779-
780-
egui_logger::logger_ui().show(ui);
777+
ui.collapsing("Debug logs:", |ui| {
778+
egui_logger::logger_ui().show(ui);
779+
});
781780
});
782781
}
783782

@@ -839,7 +838,7 @@ impl eframe::App for MyApp {
839838
image::ColorType::Rgba8,
840839
)
841840
.unwrap();
842-
eprintln!("Image saved to {path:?}.");
841+
println!("Image saved to {path:?}.");
843842
}
844843
}
845844
}

0 commit comments

Comments
 (0)