diff --git a/crates/game-service/src/battle.rs b/crates/game-service/src/battle.rs index 11d272b..d4edf42 100644 --- a/crates/game-service/src/battle.rs +++ b/crates/game-service/src/battle.rs @@ -64,6 +64,8 @@ impl BattleBuilder { .unwrap_or(0); tracing::info!( buff_type_count, + knight_id = ?character_data("Knight").global_id(), + barbarian_id = ?character_data("Barbarian").global_id(), king_id = ?character_data(CHARACTER_KING_TOWER).global_id(), princess_id = ?character_data(CHARACTER_PRINCESS_TOWER).global_id(), "battle builder ready" diff --git a/crates/game-service/src/battle_session.rs b/crates/game-service/src/battle_session.rs index b8f6d09..4b0bccb 100644 --- a/crates/game-service/src/battle_session.rs +++ b/crates/game-service/src/battle_session.rs @@ -275,6 +275,7 @@ impl BattleSession { tick, global_id = ?entry.global_id.0, data = %entry.data, + data_ref = ?entry.data.global_id(), owner = entry.owner_index(), position = ?entry.position(), "spawning"