Skip to content

Commit

Permalink
Merge branch 'main' into bevy-0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile authored Dec 6, 2024
2 parents 1947ca4 + 151fd27 commit 6f7cbe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use bevy::app::{App, Plugin, PreUpdate, Update};
use bevy::asset::{AssetApp, AssetLoadFailedEvent, AssetServer, Assets, LoadState, UntypedHandle};
use bevy::ecs::prelude::*;
use bevy::ecs::system::SystemState;
use bevy::log::{error, error_once, info};
use bevy::log::{debug, error, error_once, info};
use bevy::state::app::AppExtStates;
use bevy::state::condition::in_state;
use bevy::state::state::NextState;
Expand Down Expand Up @@ -328,7 +328,7 @@ pub fn process_manifest<M: Manifest>(
world: &mut World,
system_state: &mut SystemState<(Res<RawManifestTracker>, ResMut<Assets<M::RawManifest>>)>,
) {
info!("Processing manifest of type {}.", type_name::<M>());
debug!("Processing manifest of type {}.", type_name::<M>());

let (raw_manifest_tracker, mut assets) = system_state.get_mut(world);
let Some(status) = raw_manifest_tracker.status::<M>() else {
Expand Down

0 comments on commit 6f7cbe2

Please sign in to comment.