Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Gorzala committed Jan 17, 2024
1 parent ff5eb3a commit 1d8d522
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import lombok.RequiredArgsConstructor;
import net.dancier.kikeriki.application.domain.model.state.State;
import net.dancier.kikeriki.application.port.StatePort;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Profile;
import org.springframework.stereotype.Component;

import java.util.UUID;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public void handle(MessagePostedEvent messagePostedEvent) {
UUID recipientsUuid = UUID.fromString(recipientId);
log.info("Loading for: " + recipientsUuid);
State state = statePort.get(recipientsUuid);
log.info("Loaded: " + state);
}
}
}

0 comments on commit 1d8d522

Please sign in to comment.