Skip to content

Commit 121a229

Browse files
committed
remove debug
1 parent e57d6a4 commit 121a229

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def middlewares():
7979
token = auth_header.split(" ", 1)[1]
8080

8181
token = unquote(token)
82-
82+
8383
if token != API_TOKEN:
8484
infoLog(f"Client failed Bearer Auth [token: {token}]")
8585
return UnauthorizedResponse()
@@ -123,8 +123,6 @@ def proxy(path):
123123

124124
targetURL = f"{SIGNAL_API_URL}/{path}{query_string}"
125125

126-
infoLog(json.dumps(jsonData))
127-
128126
resp = requests.request(
129127
method=method,
130128
url=targetURL,

0 commit comments

Comments
 (0)