We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d31771 commit 60345f9Copy full SHA for 60345f9
1 file changed
src/main/java/com/dddheroes/heroesofddd/creaturerecruitment/write/Dwelling.java
@@ -30,7 +30,7 @@ public class Dwelling {
30
private static final Logger logger = LoggerFactory.getLogger(Dwelling.class);
31
32
@AggregateIdentifier
33
- public DwellingId dwellingId;
+ public DwellingId dwellingId; // needs to be public for snapshotting
34
public CreatureId creatureId;
35
public Resources costPerTroop;
36
public Amount availableCreatures;
@@ -114,7 +114,9 @@ void evolve(CreatureRecruited event) {
114
}
115
116
Dwelling() {
117
- logger.info("🏠 Creating empty Dwelling (required by Axon)");
+ logger.info("\uD83D\uDC80 Dwelling non-args constructor");
118
// required by Axon
119
120
+
121
122
0 commit comments