diff --git a/src/ai_move.cpp b/src/ai_move.cpp index 2d97cce3c66..b06d4ec486d 100644 --- a/src/ai_move.cpp +++ b/src/ai_move.cpp @@ -158,7 +158,7 @@ std::vector ai::find_targets(unit_map::const_iterator leader, const if(get_village) { double value = current_team().village_value(); value *= 1.0 - static_cast(distance_between(*t,leader->first))/corner_distance; - ERR_AI << "found village target... " << *t << " with value: " << value << " distance: " << static_cast(distance_between(*t,leader->first)) << "\n"; + DBG_AI << "found village target... " << *t << " with value: " << value << " distance: " << static_cast(distance_between(*t,leader->first)) << "\n"; targets.push_back(target(*t,value,target::VILLAGE)); } }