add topics to logs
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 42s

This commit is contained in:
Lee
2024-07-04 07:06:54 +01:00
parent 43c5473a4f
commit 5b0f06efc2
15 changed files with 16 additions and 15 deletions

View File

@ -34,7 +34,7 @@ import java.util.Map;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "Channel Listener")
public class ChannelListener implements EventListener {
/**
* A map of users and the last voice channel they were in

View File

@ -22,7 +22,7 @@ import org.springframework.stereotype.Component;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "Guild Listener")
public class GuildListener implements EventListener {
private final LogFeature logFeature;

View File

@ -36,7 +36,7 @@ import java.util.List;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "Member Listener")
public class MemberListener implements EventListener {
private final LogFeature logFeature;
private final GuildService guildService;

View File

@ -20,7 +20,7 @@ import org.springframework.stereotype.Component;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "Message Listener")
public class MessageListener implements EventListener {
private final LogFeature logFeature;