|
|
@@ -29,6 +29,9 @@ public class TeamService {
|
|
|
public Mission updateMission(Event event, Team t, TeamUpdateDto update) {
|
|
|
if (update != null) {
|
|
|
t.setCurrentLocation(update.getLocation());
|
|
|
+ if (update.getAnswer() != null) {
|
|
|
+ LOGGER.info("Team {}, {}", t.getName(), update);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
Mission m = t.getCurrentMission();
|