Skip to content

Commit a8e87a5

Browse files
committed
removed console logs
1 parent 8287cec commit a8e87a5

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

client/src/api/auth.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export async function getStatus(setStatus, setAuthType) {
6464
}
6565

6666
export async function jwtAuth(navigate) {
67-
console.log('process.env',process.env)
6867
try {
6968
await axios.get(
7069
process.env.REACT_APP_API_BASE_URL + "/jwt_auth",

server/app/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
load_dotenv()
99

1010
URL_PREFIX = '/api'
11-
print(os.environ)
12-
print('=====')
1311

1412
app = Flask(__name__)
1513
app.config.from_pyfile("config.py")

server/app/api/auth.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ def jwt_auth():
5454
Authorization by JWT
5555
"""
5656

57-
print("INSIDE /api/jwt_auth !!!")
58-
# print("Request Headers:", dict(request.headers))
59-
# print("Request Args:", request.args)
60-
6157
try:
6258
auth_data = DsClient.update_token()
6359
except ApiException as exc:

0 commit comments

Comments
 (0)