From 5c21773d2a9171bcaa2640827bf108716d183bf5 Mon Sep 17 00:00:00 2001 From: Michail Date: Mon, 22 Apr 2024 22:44:25 +0200 Subject: [PATCH] Add back logback filter --- .../jmusicbot/utils/LogBackTurboFilter.java | 44 +++++++++++++++++++ src/main/resources/logback.xml | 2 + 2 files changed, 46 insertions(+) create mode 100644 src/main/java/com/jagrosh/jmusicbot/utils/LogBackTurboFilter.java diff --git a/src/main/java/com/jagrosh/jmusicbot/utils/LogBackTurboFilter.java b/src/main/java/com/jagrosh/jmusicbot/utils/LogBackTurboFilter.java new file mode 100644 index 000000000..c991a07ec --- /dev/null +++ b/src/main/java/com/jagrosh/jmusicbot/utils/LogBackTurboFilter.java @@ -0,0 +1,44 @@ +/* + * Copyright 2024 John Grosh . + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.jagrosh.jmusicbot.utils; + +import ch.qos.logback.classic.Level; +import ch.qos.logback.classic.Logger; +import ch.qos.logback.classic.turbo.TurboFilter; +import ch.qos.logback.core.spi.FilterReply; +import org.slf4j.Marker; + +/** + * A TurboFilter, currently only used to suppress specific log messages from libraries. + * + * @author Michaili K. + */ +public class LogBackTurboFilter extends TurboFilter +{ + @Override + public FilterReply decide(Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t) + { + // Suppresses the auth token warning from the YoutubeAudioSourceManager + // https://github.com/jagrosh/MusicBot/pull/1490#issuecomment-1974070225 + if (logger.getName().equals("com.sedmelluq.discord.lavaplayer.source.youtube.YoutubeAccessTokenTracker") + && format.equals("YouTube auth tokens can't be retrieved because email and password is not set in YoutubeAudioSourceManager, age restricted videos will throw exceptions.") + ) { + return FilterReply.DENY; + } + + return FilterReply.NEUTRAL; + } +} diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml index 4a7033f5d..1d03fcc22 100644 --- a/src/main/resources/logback.xml +++ b/src/main/resources/logback.xml @@ -14,4 +14,6 @@ + +