mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-20 10:15:23 -04:00
Remove redundant log calls
This commit is contained in:
parent
eb64d57cf7
commit
249a8bf114
1 changed files with 2 additions and 6 deletions
|
@ -2,13 +2,13 @@
|
|||
|
||||
import base64
|
||||
import binascii
|
||||
import concurrent.futures
|
||||
import hashlib
|
||||
import json
|
||||
import logging
|
||||
import re
|
||||
import time
|
||||
from abc import ABC, abstractmethod
|
||||
import concurrent.futures
|
||||
from typing import Any, Dict, Generator, Optional, Sequence, Tuple, Union
|
||||
|
||||
import deezer
|
||||
|
@ -1190,11 +1190,7 @@ class SoundCloudClient(Client):
|
|||
else:
|
||||
url = f"{SOUNDCLOUD_BASE}/{path}"
|
||||
|
||||
logger.debug("Fetching url %s", url)
|
||||
logger.debug("Parameters: %s", params)
|
||||
logger.debug("Fetching url %s with params %s", url, params)
|
||||
r = self.session.get(url, params=params)
|
||||
logger.debug(r.text)
|
||||
if resp_obj:
|
||||
return r
|
||||
|
||||
return r.json(), r.status_code
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue