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

@ -19,7 +19,7 @@ import java.util.List;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "AutoRole Listener")
public class AutoRoleListener implements EventListener {
private final FeatureService featureService;

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;

View File

@ -22,7 +22,7 @@ import org.springframework.stereotype.Component;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "NumberOneScoreFeed Listener")
public class NumberOneScoreFeedListener implements EventListener {
private final GuildService guildService;
private final FeatureService featureService;

View File

@ -21,7 +21,7 @@ import org.springframework.stereotype.Component;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "UserScoreFeed Listener")
public class UserScoreFeedListener implements EventListener {
private final GuildService guildService;
private final FeatureService featureService;

View File

@ -29,7 +29,7 @@ import java.util.concurrent.TimeUnit;
* @author Fascinated (fascinated7)
*/
@Component
@Log4j2
@Log4j2(topic = "Spotify Current Command")
@CommandInfo(name = "current", description = "Gets the currently playing Spotify track")
public class CurrentSubCommand extends BatSubCommand implements EventListener {
private final SpotifyService spotifyService;