Skip to content

Commit

Permalink
refactor: 로그 수정
Browse files Browse the repository at this point in the history
- x.reservation ➡️ x.alarm.work

Related: #70
  • Loading branch information
hoa0217 committed Apr 17, 2024
1 parent 8d91d88 commit 60e7f7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class AlarmProducer {

public void send(AlarmEvent alarmEvent) {
try {
log.info("AlarmEvent produce to x.reservation");
log.info("AlarmEvent produce to x.alarm.work");
String message = objectMapper.writeValueAsString(alarmEvent);
rabbitTemplate.convertAndSend("x.alarm.work", "", message);
} catch (JsonProcessingException e) {
Expand Down

0 comments on commit 60e7f7a

Please sign in to comment.