Skip to content

Commit

Permalink
chore(YouTube - Spoof video streams): Improve error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
LisoUseInAIKyrios committed Dec 9, 2024
1 parent d95720f commit f5769ec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ public static void fetchStreams(String url, Map<String, String> requestHeaders)
StreamingDataRequest.fetchRequest(videoId, requestHeaders);
}
} catch (Exception ex) {
Logger.printException(() -> "buildRequest failure", ex);
Logger.printException(() -> "buildRequest failure. Url: " + url
+ " headers: " + requestHeaders, ex);
}
}
}
Expand Down

0 comments on commit f5769ec

Please sign in to comment.