change warn to debug

This commit is contained in:
wiiznokes 2024-07-11 16:15:00 +02:00 committed by Ashley Wulber
parent 593e397b03
commit d2cd4f2251
2 changed files with 4 additions and 3 deletions

View file

@ -93,7 +93,7 @@ pub async fn main() {
if let Some(pos) = app.toplevels.iter().position(|t| t.0 == handle) {
if info.state.contains(&State::Activated) {
tracing::warn!("Update {:?}: push front", &info.app_id);
tracing::debug!("Update {:?}: push front", &info.app_id);
app.toplevels.remove(pos);
app.toplevels.push_front((handle, info));
} else {