Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Gorzala committed Dec 15, 2023
1 parent 62a99c4 commit aaa69cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/dancier/dancer/chat/ChatController.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ResponseEntity<ChatsDto> getChats(@CurrentUser AuthenticatedUser authenti
public ResponseEntity<ChatDto> postChat(
@CurrentUser AuthenticatedUser authenticatedUser,
@RequestBody CreateChatDto createChatDto) {
log.info("Creating a new chat for user {}.", authenticatedUser.getUserId());
log.info("Creating a new chat for User {}.", authenticatedUser.getUserId());

ChatDto createdChat = chatService.createChat(authenticatedUser.getDancerIdOrThrow(), createChatDto);
log.info("this chat was created " + createdChat);
Expand Down

0 comments on commit aaa69cd

Please sign in to comment.