1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

Lower some logging from debug -> trace

This commit is contained in:
Emil Ernerfeldt
2024-01-19 13:44:04 +01:00
parent f7ec8f210d
commit 76ec982958
3 changed files with 6 additions and 6 deletions

View File

@@ -390,7 +390,7 @@ impl ContextImpl {
.entry(pixels_per_point.into())
.or_insert_with(|| {
#[cfg(feature = "log")]
log::debug!("Creating new Fonts for pixels_per_point={pixels_per_point}");
log::trace!("Creating new Fonts for pixels_per_point={pixels_per_point}");
is_new = true;
crate::profile_scope!("Fonts::new");
@@ -1810,7 +1810,7 @@ impl ContextImpl {
true
} else {
#[cfg(feature = "log")]
log::debug!(
log::trace!(
"Freeing Fonts with pixels_per_point={} because it is no longer needed",
pixels_per_point.into_inner()
);