Skip to content

Commit

Permalink
Fix incorrect logger name
Browse files Browse the repository at this point in the history
  • Loading branch information
devoxin committed Aug 23, 2024
1 parent f74d499 commit 978efc6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import com.sedmelluq.discord.lavaplayer.tools.FriendlyException;
import com.sedmelluq.discord.lavaplayer.tools.FriendlyException.Severity;
import com.sedmelluq.discord.lavaplayer.tools.JsonBrowser;
import com.sedmelluq.discord.lavaplayer.tools.Units;
import com.sedmelluq.discord.lavaplayer.tools.io.HttpInterface;
import com.sedmelluq.discord.lavaplayer.track.AudioItem;
import com.sedmelluq.discord.lavaplayer.track.AudioTrack;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* the start position at which to start reading on a new connection.
*/
public class YoutubePersistentHttpStream extends PersistentHttpStream {
private static final Logger log = LoggerFactory.getLogger(com.sedmelluq.discord.lavaplayer.source.youtube.YoutubePersistentHttpStream.class);
private static final Logger log = LoggerFactory.getLogger(YoutubePersistentHttpStream.class);

// Valid range for requesting without throttling is 0-11862014
private static final long BUFFER_SIZE = 11862014;
Expand Down

0 comments on commit 978efc6

Please sign in to comment.