Audio changes (#5593)

* Squash tested commits

* remove the code jack is concerned about

* Apply suggestions from code review

* more log lines

* more log lines

* format

* formatting

* style(Rename Xms and Xmx mentions): Rename Xms and Xmx to more use friendly names

- Change Xms to "Initial Heapsize"
- Change Xmx to "Max Heapsize"

Signed-off-by: Draper <27962761+Drapersniper@users.noreply.github.com>
This commit is contained in:
Draper
2022-03-28 16:23:30 +01:00
committed by GitHub
parent 5a5b22003f
commit 9ec85d4819
28 changed files with 1629 additions and 599 deletions

View File

@@ -76,7 +76,7 @@ class GlobalCacheWrapper:
) as r:
search_response = await r.json(loads=json.loads)
log.trace(
"GET || Ping %s || Status code %d || %s",
"GET || Ping %s || Status code %s || %s",
r.headers.get("x-process-time"),
r.status,
query,
@@ -107,7 +107,7 @@ class GlobalCacheWrapper:
) as r:
search_response = await r.json(loads=json.loads)
log.trace(
"GET/spotify || Ping %s || Status code %d || %s - %s",
"GET/spotify || Ping %s || Status code %s || %s - %s",
r.headers.get("x-process-time"),
r.status,
title,
@@ -143,7 +143,7 @@ class GlobalCacheWrapper:
) as r:
await r.read()
log.trace(
"GET || Ping %s || Status code %d || %s",
"GET || Ping %s || Status code %s || %s",
r.headers.get("x-process-time"),
r.status,
query,