diff --git a/endpoints/xc.py b/endpoints/xc.py index 1ca2f35..96b9155 100644 --- a/endpoints/xc.py +++ b/endpoints/xc.py @@ -33,10 +33,6 @@ class XC(FastAPI): "xc": self.xc_handler, } - - for endpoint, handler in self.ws_endpoints.items(): - app.add_api_websocket_route(f"/{endpoint}/", handler) - for endpoint, handler in self.endpoints.items(): app.add_api_route(f"/{endpoint}", handler, methods=["POST"], include_in_schema=False) diff --git a/lyric_search/sources/aggregate.py b/lyric_search/sources/aggregate.py index 1561abc..71fba03 100644 --- a/lyric_search/sources/aggregate.py +++ b/lyric_search/sources/aggregate.py @@ -10,9 +10,6 @@ import traceback sys.path.insert(1,'..') from . import cache, redis_cache, genius, lrclib -logger = logging.getLogger() -logger.setLevel(logging.INFO) - class Aggregate: """ Aggregate all source methods