KeyRateService log fix
This commit is contained in:
parent
59942baf9b
commit
8633081e6d
1 changed files with 2 additions and 2 deletions
|
|
@ -47,7 +47,7 @@ public class KeyRateService extends QueueConsumer implements InitializingBean {
|
|||
|
||||
private void newKeyRate(BaseRequest<KeyRateNewRequest> userRequest) {
|
||||
KeyRateNewRequest req = userRequest.getRequestPayload();
|
||||
log.debug("MoneyMarketSecurityNewRequest received");
|
||||
log.debug("KeyRateNewRequest received");
|
||||
KeyRate keyRate = new KeyRate();
|
||||
keyRate.setEndDate(req.getEndDate());
|
||||
keyRate.setDocument(req.getDocument());
|
||||
|
|
@ -60,7 +60,7 @@ public class KeyRateService extends QueueConsumer implements InitializingBean {
|
|||
|
||||
private void updateKeyRate(BaseRequest<KeyRateUpdateRequest> userRequest) {
|
||||
KeyRateUpdateRequest req = userRequest.getRequestPayload();
|
||||
log.debug("MoneyMarketSecurityUpdateRequest received id = {}", req.getId());
|
||||
log.debug("KeyRateUpdateRequest received id = {}", req.getId());
|
||||
KeyRate keyRate = keyRateMap.getSingleObjectByID(req.getId());
|
||||
keyRate.setEndDate(req.getEndDate());
|
||||
keyRate.setDocument(req.getDocument());
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue