File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
main/src/main/java/com/github/topi314/lavasrc/deezer Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 2424import org .apache .http .entity .StringEntity ;
2525import org .apache .http .impl .client .BasicCookieStore ;
2626import org .apache .http .impl .cookie .BasicClientCookie ;
27+ import org .slf4j .Logger ;
28+ import org .slf4j .LoggerFactory ;
2729
2830import java .io .IOException ;
2931import java .net .URI ;
3638
3739public class DeezerAudioTrack extends ExtendedAudioTrack {
3840
41+ private static final Logger log = LoggerFactory .getLogger (DeezerAudioTrack .class );
42+
3943 private final DeezerAudioSourceManager sourceManager ;
4044
4145 public DeezerAudioTrack (AudioTrackInfo trackInfo , DeezerAudioSourceManager sourceManager ) {
@@ -119,7 +123,7 @@ public void process(LocalAudioTrackExecutor executor) throws Exception {
119123 }
120124 }
121125 } catch (IOException e ) {
122- throw new RuntimeException ( e );
126+ log . debug ( "Failed to parse arl from userData" , e );
123127 }
124128
125129 if (arl == null ) {
You can’t perform that action at this time.
0 commit comments