dev-fabian #2

Merged
marcsello merged 7 commits from dev-fabian into dev 2020-03-30 17:18:54 +02:00
Showing only changes of commit 68e2eaffcb - Show all commits

View File

@ -4,6 +4,5 @@ from flask import request, current_app, Response
class LogView(FlaskView):
def get(self):
remote_uuid = request.json['uuid']
current_app.logger.info(f"New message from {remote_uuid}: {request.message}")
current_app.logger.info(f"New message from: {request.json['message']}")
return Response(status=204)