Skip to content
Snippets Groups Projects
Commit afb782c1 authored by dcz's avatar dcz
Browse files

logging

parent bddf8f48
Branches
No related merge requests found
......@@ -27,6 +27,8 @@ from xml.sax import handler, make_parser
from django.db.models import Q
from django.conf import settings
import logging
@ajax_required
@transaction.atomic
......@@ -517,6 +519,9 @@ def change_unified_frame_status_to_verified_by_superleksykograf(request):
def create_unified_frame(frame_id):
logging.info('Requesting unified frame creation service, frame_id: {}, service_url: {}'.format(frame_id, settings.UNIFIED_FRAME_SERVICE_URL ))
response = requests.post(settings.UNIFIED_FRAME_SERVICE_URL + str(frame_id), timeout=(1000, 1000))
parser = make_parser()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment