mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-20 18:25:30 -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 base64
|
||||||
import binascii
|
import binascii
|
||||||
|
import concurrent.futures
|
||||||
import hashlib
|
import hashlib
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
import re
|
import re
|
||||||
import time
|
import time
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
import concurrent.futures
|
|
||||||
from typing import Any, Dict, Generator, Optional, Sequence, Tuple, Union
|
from typing import Any, Dict, Generator, Optional, Sequence, Tuple, Union
|
||||||
|
|
||||||
import deezer
|
import deezer
|
||||||
|
@ -1190,11 +1190,7 @@ class SoundCloudClient(Client):
|
||||||
else:
|
else:
|
||||||
url = f"{SOUNDCLOUD_BASE}/{path}"
|
url = f"{SOUNDCLOUD_BASE}/{path}"
|
||||||
|
|
||||||
logger.debug("Fetching url %s", url)
|
logger.debug("Fetching url %s with params %s", url, params)
|
||||||
logger.debug("Parameters: %s", params)
|
|
||||||
r = self.session.get(url, params=params)
|
r = self.session.get(url, params=params)
|
||||||
logger.debug(r.text)
|
|
||||||
if resp_obj:
|
|
||||||
return r
|
|
||||||
|
|
||||||
return r.json(), r.status_code
|
return r.json(), r.status_code
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue