Skip to content

Commit ff897ba

Browse files
committed
Remove prefix from logging.
1 parent a966cc9 commit ff897ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/routes/applications.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async def create_application(self, request: Request) -> Response:
7070
name: str = data['name']
7171
description: str = data['description']
7272
except Exception as e:
73-
logger.debug(f'Received bad JSON in "/api/applications/create": {e}')
73+
logger.debug(f'Received bad JSON in "/applications/create": {e}')
7474
return JSONResponse({'error': 'Bad POST JSON Body.'}, status_code=400)
7575

7676
if len(name) < 3 or len(name) > 32:

0 commit comments

Comments
 (0)