From b50ce7028e1bb0ca054199421b358515000991e2 Mon Sep 17 00:00:00 2001 From: gfgtdf Date: Mon, 20 Mar 2017 17:13:50 +0100 Subject: [PATCH] fixup debug output --- src/game_initialization/connect_engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game_initialization/connect_engine.cpp b/src/game_initialization/connect_engine.cpp index 89555adc865b..d6235bc6e138 100644 --- a/src/game_initialization/connect_engine.cpp +++ b/src/game_initialization/connect_engine.cpp @@ -998,10 +998,10 @@ config side_engine::new_config() const if(!parent_.params_.saved_game) { // Merge the faction data to res. config faction = flg_.current_faction(); + LOG_MP << "side_engine::new_config: side=" << index_ + 1 << " faction=" << faction["id"] << " recruit=" << faction["recruit"] << "\n"; res["faction_name"] = faction["name"]; res["faction"] = faction["id"]; faction.remove_attributes("id", "name", "image", "gender", "type"); - LOG_MP << "side_engine::new_config: side=" << index_ + 1 << " faction=" << res["faction_name"] << " recuit=" << res["recruit"] << "\n"; res.append(faction); }