Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Commit

Permalink
Remove unecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
HaarigerHarald committed Jan 18, 2020
1 parent 2b0d529 commit 42900a8
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ private SparseArray<YtFile> getStreamUrls() throws IOException, InterruptedExcep
String url;
if (sigEnc) {
String cipher = mat.group(1);
Log.d(LOG_TAG, cipher);
Matcher mat2 = patCipherUrl.matcher(cipher);
if (mat2.find()) {
url = URLDecoder.decode(mat2.group(1), "UTF-8");
Expand Down Expand Up @@ -382,7 +381,6 @@ private SparseArray<YtFile> getStreamUrls() throws IOException, InterruptedExcep
}

Format format = FORMAT_MAP.get(itag);
Log.d(LOG_TAG, url);
YtFile newVideo = new YtFile(format, url);
ytFiles.put(itag, newVideo);
}
Expand Down

0 comments on commit 42900a8

Please sign in to comment.