diff --git a/AgdarCentre/__pycache__/settings.cpython-312.pyc b/AgdarCentre/__pycache__/settings.cpython-312.pyc index ce993a4e..f1eb78b1 100644 Binary files a/AgdarCentre/__pycache__/settings.cpython-312.pyc and b/AgdarCentre/__pycache__/settings.cpython-312.pyc differ diff --git a/AgdarCentre/__pycache__/urls.cpython-312.pyc b/AgdarCentre/__pycache__/urls.cpython-312.pyc index 7d506b48..0dd611fd 100644 Binary files a/AgdarCentre/__pycache__/urls.cpython-312.pyc and b/AgdarCentre/__pycache__/urls.cpython-312.pyc differ diff --git a/AgdarCentre/settings.py b/AgdarCentre/settings.py index e6902ffb..fdceef0b 100644 --- a/AgdarCentre/settings.py +++ b/AgdarCentre/settings.py @@ -63,7 +63,6 @@ INSTALLED_APPS = [ 'phonenumber_field', 'django_celery_beat', 'django_celery_results', - 'debug_toolbar', 'django_extensions', 'webpack_loader', @@ -96,7 +95,6 @@ MIDDLEWARE = [ 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django_htmx.middleware.HtmxMiddleware', 'simple_history.middleware.HistoryRequestMiddleware', - 'debug_toolbar.middleware.DebugToolbarMiddleware', ] ROOT_URLCONF = 'AgdarCentre.urls' @@ -412,14 +410,6 @@ LOGGING = { } -# Debug Toolbar -# https://django-debug-toolbar.readthedocs.io/ - -INTERNAL_IPS = [ - '127.0.0.1', -] - - # Session Configuration SESSION_COOKIE_AGE = 86400 # 24 hours SESSION_SAVE_EVERY_REQUEST = True diff --git a/AgdarCentre/urls.py b/AgdarCentre/urls.py index 745a449c..c9815bec 100644 --- a/AgdarCentre/urls.py +++ b/AgdarCentre/urls.py @@ -49,8 +49,3 @@ urlpatterns += i18n_patterns( if settings.DEBUG: urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) - - import debug_toolbar - urlpatterns = [ - path('__debug__/', include(debug_toolbar.urls)), - ] + urlpatterns diff --git a/aba/templates/aba/consult_form.html b/aba/templates/aba/consult_form.html index 22d918fa..49cda1a5 100644 --- a/aba/templates/aba/consult_form.html +++ b/aba/templates/aba/consult_form.html @@ -455,7 +455,7 @@ $(document).ready(function() { const formCount = parseInt($(totalFormsId).val()) || 0; if (formCount >= maxForms) { - alert('{% trans "Maximum number of behaviors reached" %}'); + showAlertModal('{% trans "Maximum number of behaviors reached" %}', 'warning'); return; } @@ -539,7 +539,7 @@ $(document).ready(function() { // Check if there's only one visible behavior left const visibleBehaviors = $('.behavior-formset-item:visible').length; if (visibleBehaviors <= 1) { - alert('{% trans "You must have at least one behavior" %}'); + showAlertModal('{% trans "You must have at least one behavior" %}', 'warning'); return; } @@ -573,7 +573,7 @@ $(document).ready(function() { if (activeBehaviors === 0) { e.preventDefault(); - alert('{% trans "Please add at least one behavior" %}'); + showAlertModal('{% trans "Please add at least one behavior" %}', 'warning'); hasError = true; } diff --git a/aba/templates/aba/session_detail.html b/aba/templates/aba/session_detail.html index 105e39f4..b61ab43d 100644 --- a/aba/templates/aba/session_detail.html +++ b/aba/templates/aba/session_detail.html @@ -225,7 +225,7 @@ {% trans "This session has not been signed yet" %} {% if user.role == 'ADMIN' or user == session.provider %} -
+ { if (confirmed) this.submit(); });"> {% csrf_token %}
diff --git a/appointments/templates/appointments/appointment_form.html b/appointments/templates/appointments/appointment_form.html index b5a2889f..d5aaa522 100644 --- a/appointments/templates/appointments/appointment_form.html +++ b/appointments/templates/appointments/appointment_form.html @@ -454,7 +454,7 @@ if (!isValid) { e.preventDefault(); - alert(errorMessages.join('\n')); + showAlertModal(errorMessages.join('
'), 'warning'); } }); diff --git a/appointments/templates/appointments/appointment_reschedule.html b/appointments/templates/appointments/appointment_reschedule.html index c518bb67..6ae4ce09 100644 --- a/appointments/templates/appointments/appointment_reschedule.html +++ b/appointments/templates/appointments/appointment_reschedule.html @@ -248,32 +248,34 @@ if (!newDate || !newTime) { e.preventDefault(); - alert('{% trans "Please select both new date and time" %}'); + showAlertModal('{% trans "Please select both new date and time" %}', 'warning'); return false; } if (!reason) { e.preventDefault(); - alert('{% trans "Please provide a reason for rescheduling" %}'); + showAlertModal('{% trans "Please provide a reason for rescheduling" %}', 'warning'); return false; } // Check if date/time actually changed if (newDate === currentDate && newTime === currentTime) { e.preventDefault(); - alert('{% trans "Please select a different date or time" %}'); + showAlertModal('{% trans "Please select a different date or time" %}', 'warning'); return false; } // Confirm action - var confirmMsg = '{% trans "Are you sure you want to reschedule this appointment?" %}\n\n' + - '{% trans "Current" %}: ' + currentDate + ' ' + currentTime + '\n' + - '{% trans "New" %}: ' + newDate + ' ' + newTime; + var confirmMsg = '{% trans "Are you sure you want to reschedule this appointment?" %}

' + + '{% trans "Current" %}: ' + currentDate + ' ' + currentTime + '
' + + '{% trans "New" %}: ' + newDate + ' ' + newTime; - if (!confirm(confirmMsg)) { - e.preventDefault(); - return false; - } + e.preventDefault(); + showConfirmModal(confirmMsg, '{% trans "Confirm Reschedule" %}').then((confirmed) => { + if (confirmed) { + this.submit(); + } + }); }); }); diff --git a/core/templates/clinic/consent_form.html b/core/templates/clinic/consent_form.html index a754d5ad..ffb9a31a 100644 --- a/core/templates/clinic/consent_form.html +++ b/core/templates/clinic/consent_form.html @@ -463,12 +463,12 @@ document.addEventListener('DOMContentLoaded', function() { e.preventDefault(); if (signaturePad.isEmpty()) { - alert('{% trans "Please provide your signature before submitting." %}'); + showAlertModal('{% trans "Please provide your signature before submitting." %}', 'warning'); return; } if (!signedByNameInput.value.trim()) { - alert('{% trans "Please enter your full name." %}'); + showAlertModal('{% trans "Please enter your full name." %}', 'warning'); signedByNameInput.focus(); return; } diff --git a/core/templates/clinic/consent_template_form.html b/core/templates/clinic/consent_template_form.html index 10c5811f..81523914 100644 --- a/core/templates/clinic/consent_template_form.html +++ b/core/templates/clinic/consent_template_form.html @@ -189,7 +189,7 @@ document.addEventListener('DOMContentLoaded', function() { if (!consentType.value || !titleEn.value || !contentEn.value) { e.preventDefault(); - alert('{% trans "Please fill in all required fields" %}'); + showAlertModal('{% trans "Please fill in all required fields" %}', 'warning'); return false; } }); diff --git a/core/templates/core/consent_sign_public.html b/core/templates/core/consent_sign_public.html index 29ebb487..b4969c46 100644 --- a/core/templates/core/consent_sign_public.html +++ b/core/templates/core/consent_sign_public.html @@ -283,7 +283,7 @@ const signatureData = document.getElementById('signatureData').value; if (!signatureData) { e.preventDefault(); - alert('{% trans "Please draw your signature before submitting." %}'); + showAlertModal('{% trans "Please draw your signature before submitting." %}', 'warning'); return false; } } diff --git a/core/templates/core/home.html b/core/templates/core/home.html index 96e5c8ba..a67c9c42 100644 --- a/core/templates/core/home.html +++ b/core/templates/core/home.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% load i18n static %} +{% load i18n static tenant_tags %} {% block title %}{% trans "Home" %} - {{ block.super }}{% endblock %} @@ -8,8 +8,14 @@

- Hospital Logo
- {% trans "Welcome to Agdar" %} + {% get_tenant_logo request.user.tenant as tenant_logo %} + {% if tenant_logo %} + {{ request.user.tenant.name }}
+ {% trans "Welcome to" %} {{ request.user.tenant.name }} + {% else %} + Tenhal|تنحل
+ {% trans "Welcome to Agdar" %} + {% endif %}

{% trans "Behavioral Clinic Management System" %}

diff --git a/core/templates/core/user_detail.html b/core/templates/core/user_detail.html index aa80d5e5..bcf27810 100644 --- a/core/templates/core/user_detail.html +++ b/core/templates/core/user_detail.html @@ -21,11 +21,11 @@
{% csrf_token %} {% if staff_member.is_active %} - {% else %} - {% endif %} diff --git a/core/templates/core/user_list.html b/core/templates/core/user_list.html index 59d7c3eb..fdffec4b 100644 --- a/core/templates/core/user_list.html +++ b/core/templates/core/user_list.html @@ -328,8 +328,11 @@ const action = this.querySelector('button').textContent.includes('Deactivate') ? 'deactivate' : 'activate'; - if (!confirm(`Are you sure you want to ${action} ${staffName}?`)) { - e.preventDefault(); + e.preventDefault(); + showConfirmModal(`Are you sure you want to ${action} ${staffName}?`, 'Confirm Action').then((confirmed) => { + if (confirmed) { + form.submit(); + } } }); }); diff --git a/core/templates/core/user_profile.html b/core/templates/core/user_profile.html index b29d28c6..dff9e109 100644 --- a/core/templates/core/user_profile.html +++ b/core/templates/core/user_profile.html @@ -345,12 +345,16 @@ const clockInOutForm = document.querySelector('form[action*="clock-in-out"]'); if (clockInOutForm) { clockInOutForm.addEventListener('submit', function(e) { + e.preventDefault(); const button = this.querySelector('button[type="submit"]'); const action = button.textContent.includes('Clock Out') ? 'clock out' : 'clock in'; + const form = this; - if (!confirm(`Are you sure you want to ${action}?`)) { - e.preventDefault(); - } + showConfirmModal(`Are you sure you want to ${action}?`, 'Confirm Action').then((confirmed) => { + if (confirmed) { + form.submit(); + } + }); }); } diff --git a/core/templates/core/user_profile_edit.html b/core/templates/core/user_profile_edit.html index 49464830..8637635f 100644 --- a/core/templates/core/user_profile_edit.html +++ b/core/templates/core/user_profile_edit.html @@ -264,7 +264,7 @@ if (file) { // Validate file size (max 5MB) if (file.size > 5 * 1024 * 1024) { - alert('{% trans "File size must be less than 5MB" %}'); + showAlertModal('{% trans "File size must be less than 5MB" %}', 'warning'); this.value = ''; return; } @@ -272,7 +272,7 @@ // Validate file type const validTypes = ['image/jpeg', 'image/jpg', 'image/png', 'image/gif']; if (!validTypes.includes(file.type)) { - alert('{% trans "Please select a valid image file (JPEG, PNG, or GIF)" %}'); + showAlertModal('{% trans "Please select a valid image file (JPEG, PNG, or GIF)" %}', 'warning'); this.value = ''; return; } @@ -319,7 +319,7 @@ if (!isValid) { e.preventDefault(); - alert('{% trans "Please fill in all required fields" %}'); + showAlertModal('{% trans "Please fill in all required fields" %}', 'warning'); } }); } diff --git a/core/templatetags/__pycache__/tenant_tags.cpython-312.pyc b/core/templatetags/__pycache__/tenant_tags.cpython-312.pyc new file mode 100644 index 00000000..293c6771 Binary files /dev/null and b/core/templatetags/__pycache__/tenant_tags.cpython-312.pyc differ diff --git a/core/templatetags/tenant_tags.py b/core/templatetags/tenant_tags.py new file mode 100644 index 00000000..4b0e9003 --- /dev/null +++ b/core/templatetags/tenant_tags.py @@ -0,0 +1,93 @@ +""" +Template tags for tenant-related functionality. +""" + +from django import template +from django.core.cache import cache +from core.settings_service import get_tenant_settings_service + +register = template.Library() + + +@register.simple_tag +def get_tenant_setting(tenant, key, default=None): + """ + Get a tenant setting value. + + Usage: + {% get_tenant_setting request.user.tenant 'basic_logo' as logo %} + {% if logo %} + Logo + {% endif %} + + Args: + tenant: Tenant instance + key: Setting key + default: Default value if setting doesn't exist + + Returns: + Setting value + """ + if not tenant: + return default + + try: + settings_service = get_tenant_settings_service(tenant) + return settings_service.get_setting(key, default) + except Exception: + return default + + +@register.simple_tag +def get_tenant_logo(tenant): + """ + Get tenant logo file. + + Usage: + {% get_tenant_logo request.user.tenant as logo %} + {% if logo %} + {{ tenant.name }} + {% endif %} + + Args: + tenant: Tenant instance + + Returns: + Logo file or None + """ + if not tenant: + return None + + try: + settings_service = get_tenant_settings_service(tenant) + logo = settings_service.get_setting('basic_logo') + return logo if logo else None + except Exception: + return None + + +@register.filter +def has_tenant_logo(tenant): + """ + Check if tenant has a logo. + + Usage: + {% if request.user.tenant|has_tenant_logo %} + ... + {% endif %} + + Args: + tenant: Tenant instance + + Returns: + Boolean + """ + if not tenant: + return False + + try: + settings_service = get_tenant_settings_service(tenant) + logo = settings_service.get_setting('basic_logo') + return bool(logo) + except Exception: + return False diff --git a/db.sqlite3 b/db.sqlite3 index af63997a..34cd64d1 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/finance/templates/finance/package_form.html b/finance/templates/finance/package_form.html index a3c96d89..2042545a 100644 --- a/finance/templates/finance/package_form.html +++ b/finance/templates/finance/package_form.html @@ -167,7 +167,7 @@
{% if not service_form.instance.pk or service_formset.can_delete %} - {% endif %} @@ -231,7 +231,7 @@
- {{ service_formset.empty_form.id }} diff --git a/logs/django.log b/logs/django.log index c8d7490b..8ba49add 100644 --- a/logs/django.log +++ b/logs/django.log @@ -78168,3 +78168,2119 @@ INFO 2025-11-04 01:30:00,013 tasks 70308 8426217792 Lab results sync started INFO 2025-11-04 01:30:00,013 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-03 22:30:00.013882+00:00'} INFO 2025-11-04 01:30:13,916 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 INFO 2025-11-04 01:30:14,135 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=0a3d41479139433180de2e8adfb9e97a HTTP/1.1" 200 9547 +INFO 2025-11-04 01:30:43,936 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:30:44,157 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=cc60d5ec86514e7989c4849b39bd5c6c HTTP/1.1" 200 9548 +INFO 2025-11-04 01:31:13,924 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:31:14,151 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=ca305494bfdb4396b54cc07b04310fc8 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:31:43,935 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:31:44,157 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=9ca25f46dc534b9b90298ee91f000e15 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:32:13,924 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:32:14,140 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=11fd0bc8e04d413fadc79c26d7ec4518 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:32:43,920 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:32:44,149 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=05c9731607a440b38b55680508d5f545 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:33:13,919 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:33:14,148 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=ff0fb2ca51224b3e84492577c2b6bad6 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:33:43,918 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:33:44,135 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=eea0c897fb704ba69031f06060dc5700 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:34:13,934 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:34:14,163 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=1d70284ac18249ad9fe758456b0af428 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:34:43,915 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:34:44,143 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=e7a37b032b69401bb1b92f937459c366 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:35:13,932 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:35:14,151 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=a5cffa6e96254545b179f819de623d17 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:35:43,934 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:35:44,151 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=f70e96e2191a446aa41d7a677b41be18 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:36:13,960 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:36:14,184 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=b69ea95dcd9042e289498a50fcfac747 HTTP/1.1" 200 9549 +INFO 2025-11-04 01:36:43,931 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:36:44,159 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=7c2d95d0aa304718a57e32ce8eeb86a1 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:37:13,949 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:37:14,170 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=0684613a2d294aa69655303a9bd75eb0 HTTP/1.1" 200 9549 +INFO 2025-11-04 01:37:43,920 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:37:44,138 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=b654f2adc7c14913bb562d5a0369aca4 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:38:13,917 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:38:14,136 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=830acc434ef0497694eb4809889b9fe3 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:38:43,910 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:38:44,123 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=f9847ed5974545b9bccb9e30784e5e58 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:39:13,901 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:39:14,113 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=561dfb20e9e041879e16542b216bc2d4 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:39:43,951 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:39:44,173 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=aebe7b60d3454220982f93c4ccc58597 HTTP/1.1" 200 9549 +INFO 2025-11-04 01:40:13,934 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:40:14,148 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=7581d5d8d5914566ac04c7a509a492a9 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:40:43,953 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:40:44,180 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=c089d6efa3094f29941be02b16e0f532 HTTP/1.1" 200 9549 +INFO 2025-11-04 01:41:13,930 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:41:14,148 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=0c843cb636364211ae9d9425495e31ca HTTP/1.1" 200 9547 +INFO 2025-11-04 01:41:43,927 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:41:44,154 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=e96e94a434484359a2cd6f8e880772c6 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:42:13,948 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:42:14,165 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=1f17150dbab04bfe9c13ae1d9ba9153d HTTP/1.1" 200 9549 +INFO 2025-11-04 01:42:36,534 basehttp 70864 6168457216 "GET /en/admin/core/tenant/ HTTP/1.1" 200 69104 +INFO 2025-11-04 01:42:36,611 basehttp 70864 6168457216 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +INFO 2025-11-04 01:42:38,476 basehttp 70864 6168457216 "GET /en/admin/core/tenant/fc256181-77d4-4283-8ee1-323bd61a3569/change/ HTTP/1.1" 200 496972 +INFO 2025-11-04 01:42:38,495 basehttp 70864 13438578688 "GET /static/admin/js/inlines.js HTTP/1.1" 200 15628 +INFO 2025-11-04 01:42:38,502 basehttp 70864 13438578688 "GET /static/admin/img/icon-unknown.svg HTTP/1.1" 200 655 +INFO 2025-11-04 01:42:38,558 basehttp 70864 6168457216 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +INFO 2025-11-04 01:42:44,533 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:42:45,448 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=a2d331a1f8d24bfdb9858e58fe2a6511 HTTP/1.1" 200 9548 +INFO 2025-11-04 01:43:14,524 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:43:15,482 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=78dcd50e524348a8bf6bd67156ebb948 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:43:44,509 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:43:45,447 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=4b45f40929b441a08b07ec86d7c2a962 HTTP/1.1" 200 9547 +WARNING 2025-11-04 01:43:55,756 log 70864 6168457216 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:43:55,756 basehttp 70864 6168457216 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 01:44:44,524 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:44:45,445 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=905904e033c042b89f6ada90f8ca5328 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:45:44,492 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:45:45,430 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=00acd22d40d047c79b58f695fdaa3a45 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:46:24,386 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:46:24,602 basehttp 70864 6168457216 "GET /__debug__/history_sidebar/?request_id=18519d70374a44638dbf307bc1d54101 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:46:25,014 basehttp 70864 6168457216 "GET /en/dashboard/ HTTP/1.1" 200 59294 +INFO 2025-11-04 01:46:25,141 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:46:29,441 basehttp 70864 6168457216 "GET /en/settings/ HTTP/1.1" 200 47993 +INFO 2025-11-04 01:46:29,534 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:46:31,275 basehttp 70864 6168457216 "GET /en/settings/BASIC/ HTTP/1.1" 200 48422 +INFO 2025-11-04 01:46:31,379 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:46:42,768 basehttp 70864 6168457216 "POST /en/settings/BASIC/ HTTP/1.1" 302 0 +INFO 2025-11-04 01:46:42,874 basehttp 70864 6168457216 "GET /en/settings/ HTTP/1.1" 200 48314 +INFO 2025-11-04 01:46:42,970 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:46:48,524 basehttp 70864 6168457216 "GET /en/settings/ HTTP/1.1" 200 47994 +INFO 2025-11-04 01:46:48,611 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:46:56,973 basehttp 70864 6168457216 "GET /en/settings/BASIC/ HTTP/1.1" 200 48424 +INFO 2025-11-04 01:46:57,063 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 01:47:00,381 basehttp 70864 13438578688 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 01:47:00,425 log 70864 6168457216 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:47:00,426 basehttp 70864 6168457216 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 01:47:17,101 basehttp 70864 6168457216 "GET /en/settings/BASIC/ HTTP/1.1" 200 48423 +WARNING 2025-11-04 01:47:17,170 log 70864 6168457216 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:47:17,170 basehttp 70864 6168457216 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 01:47:17,190 basehttp 70864 13438578688 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 01:47:17,283 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:47:19,399 basehttp 70864 6168457216 "GET /en/dashboard/ HTTP/1.1" 200 59297 +WARNING 2025-11-04 01:47:19,506 log 70864 6168457216 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:47:19,507 basehttp 70864 6168457216 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +WARNING 2025-11-04 01:47:19,507 basehttp 70864 13455405056 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 01:47:19,607 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:47:20,792 basehttp 70864 13438578688 "GET /en/dashboard/ HTTP/1.1" 200 59295 +WARNING 2025-11-04 01:47:20,864 log 70864 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:47:20,864 basehttp 70864 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 01:47:20,875 basehttp 70864 6168457216 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 01:47:20,941 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:47:36,366 basehttp 70864 13438578688 "GET /en/settings/ HTTP/1.1" 200 47994 +WARNING 2025-11-04 01:47:36,447 basehttp 70864 13455405056 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 01:47:36,448 log 70864 13438578688 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:47:36,449 basehttp 70864 13438578688 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 01:47:36,511 basehttp 70864 6168457216 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:47:37,667 basehttp 70864 6168457216 "GET /en/settings/BASIC/ HTTP/1.1" 200 48422 +WARNING 2025-11-04 01:47:37,760 basehttp 70864 13455405056 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 01:47:37,769 log 70864 6168457216 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:47:37,769 basehttp 70864 6168457216 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 01:47:37,847 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:48:07,814 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:48:08,028 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=4eae4429deaf483fa99bfaf6c94dde8a HTTP/1.1" 200 9547 +INFO 2025-11-04 01:48:37,845 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:48:38,059 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=7df569dea161446981dd9b3ca9735650 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:49:07,838 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:49:08,065 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=e9592608bf674afa8e9b02dc1a21e6f4 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:49:37,825 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:49:38,037 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=1b37f03dbf9b4a759722055ef3fb4d50 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:50:07,898 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:50:08,116 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=c9dc6a210a0f42258181cfc4930b3201 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:50:37,891 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:50:38,112 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=8a39a9e5c82e47febd34544c82a50fa6 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:51:07,894 basehttp 70864 13438578688 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:51:08,113 basehttp 70864 13438578688 "GET /__debug__/history_sidebar/?request_id=fdb62f142fc44bab9022de3459818efe HTTP/1.1" 200 9547 +INFO 2025-11-04 01:51:40,771 autoreload 99680 8426217792 Watching for file changes with StatReloader +INFO 2025-11-04 01:51:42,767 basehttp 99680 6205272064 "GET /en/settings/BASIC/ HTTP/1.1" 200 48527 +WARNING 2025-11-04 01:51:42,866 basehttp 99680 6255751168 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 01:51:42,990 log 99680 6222098432 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:51:42,990 basehttp 99680 6222098432 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 01:51:42,991 basehttp 99680 6205272064 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 200 12528 +INFO 2025-11-04 01:51:43,013 basehttp 99680 6238924800 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:51:51,073 basehttp 99680 6238924800 "GET /en/dashboard/ HTTP/1.1" 200 59399 +WARNING 2025-11-04 01:51:51,150 log 99680 6238924800 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 01:51:51,150 basehttp 99680 6238924800 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 01:51:51,178 basehttp 99680 6205272064 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 01:51:51,226 basehttp 99680 6238924800 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:51:57,700 basehttp 99680 6238924800 "GET /en/staff/ HTTP/1.1" 200 119316 +INFO 2025-11-04 01:51:57,794 basehttp 99680 6238924800 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:52:06,671 basehttp 99680 6238924800 "GET /en/staff/c5feb17d-5fcc-407b-abcc-672f0be43b6f/ HTTP/1.1" 200 40685 +INFO 2025-11-04 01:52:06,762 basehttp 99680 6238924800 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:52:10,513 basehttp 99680 6238924800 "GET /en/staff/c5feb17d-5fcc-407b-abcc-672f0be43b6f/edit/ HTTP/1.1" 200 44542 +INFO 2025-11-04 01:52:10,599 basehttp 99680 6238924800 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:52:40,637 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:52:40,851 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=517fc03c192d4393b4f1714f43e90189 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:53:10,652 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:53:10,878 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=72f39c8ae14a4ee884e928460cebb42f HTTP/1.1" 200 9549 +INFO 2025-11-04 01:53:40,616 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:53:40,838 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=0061ddf6b3dc496b980a1d479d66b5e7 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:54:10,635 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:54:10,859 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=598b05a5ab1c46c581c89d9a0035d719 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:54:40,630 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:54:40,855 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=bef10dcbc56b4073bbbda2fdc516428f HTTP/1.1" 200 9548 +INFO 2025-11-04 01:55:10,622 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:55:10,848 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=854a93ce3f54424d80c4893fe5c2b2ab HTTP/1.1" 200 9547 +INFO 2025-11-04 01:55:40,630 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:55:40,844 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=c8203dd94df34533989cfcd86528fd89 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:56:10,629 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:56:10,852 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=bbf3ef5926024745990f9a2e5cbd9903 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:56:40,625 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:56:40,850 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=adb1d3824b8a452c9ae9278f57943290 HTTP/1.1" 200 9548 +INFO 2025-11-04 01:57:10,634 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:57:10,859 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=d7fc201355544b25a5862a3b19f63d84 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:57:40,649 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:57:40,873 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=7139930e83094c6f921190399ad8a3ba HTTP/1.1" 200 9549 +INFO 2025-11-04 01:58:10,649 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:58:10,869 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=1ba7b37f7e6b47169385b15378237d6e HTTP/1.1" 200 9549 +INFO 2025-11-04 01:58:40,629 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:58:40,856 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=487dc76ac5c34c94ad907108a875592a HTTP/1.1" 200 9547 +INFO 2025-11-04 01:59:10,620 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:59:10,846 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=14f6550c4ae24b8b8c8e89f9a7d45477 HTTP/1.1" 200 9547 +INFO 2025-11-04 01:59:40,628 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 01:59:40,844 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=8ef572a8841b4f729b22df95d8c9d77a HTTP/1.1" 200 9547 +INFO 2025-11-04 02:00:00,011 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 02:00:00,012 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-03 23:00:00.012194+00:00'} +INFO 2025-11-04 02:00:00,019 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 02:00:00,019 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-03 23:00:00.019758+00:00'} +INFO 2025-11-04 02:00:10,632 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:00:10,855 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=6896e1e908d84ff18bf7ec2cd35392eb HTTP/1.1" 200 9547 +INFO 2025-11-04 02:00:40,642 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:00:40,869 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=345431e36ca84d52851ecad876b416d7 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:01:10,701 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:01:10,916 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=55d6d23808a34d4d86b7f1c3a9a71801 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:01:40,726 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:01:40,946 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=9467e272d04a495cbb89886808a8bf81 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:02:10,682 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:02:10,906 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=f0c2a417d28b45afad58e50a6bd4c070 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:02:40,679 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:02:40,904 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=02420776a6384243a6daa1bf295357a0 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:03:10,718 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:03:10,938 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=8ce5c7e447df4ae1862b6bab428dda4d HTTP/1.1" 200 9548 +INFO 2025-11-04 02:03:40,703 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:03:40,925 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=c252e34fee4d491c99217ab2e9671806 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:04:10,704 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:04:10,925 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=f5d15e0c2a9c417aa12f9981c9dd7308 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:04:40,694 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:04:40,915 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=c17be98a43a64a7ba284ba2a8571488f HTTP/1.1" 200 9548 +INFO 2025-11-04 02:05:11,667 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:05:12,505 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=56be646fbd074e5bbf07414aa9682ffc HTTP/1.1" 200 9549 +INFO 2025-11-04 02:05:41,651 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:05:42,486 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=cfc757d2b43a4371baf0ee1dfdffb912 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:06:42,633 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:06:43,488 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=ed93a517e7d44e8382825c6a84a42939 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:07:43,637 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:07:44,490 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=3afcb239e84f4c7992e02a05ddbe0e28 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:08:44,639 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:08:45,485 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=ac418b9fa55f4e04bcb4b7e311f165d0 HTTP/1.1" 200 9548 +INFO 2025-11-04 02:09:32,231 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:09:32,442 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=d47bf03b570c4ee89034a1a9dab0ed4d HTTP/1.1" 200 9548 +INFO 2025-11-04 02:09:40,624 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:09:40,850 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=7099305b09f9417a8a82a178a1af239e HTTP/1.1" 200 9549 +INFO 2025-11-04 02:10:10,577 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:10:10,799 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=0e9a3652c56349a0bd1d1ff43605fab0 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:10:40,598 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:10:40,814 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=bfe50cf2d9174a4f91ab4dc7481cdd8f HTTP/1.1" 200 9547 +INFO 2025-11-04 02:11:10,597 basehttp 99680 6205272064 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:11:10,810 basehttp 99680 6205272064 "GET /__debug__/history_sidebar/?request_id=00ec8dd6255542d7bfc3168d46b10ae7 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:11:16,411 autoreload 99680 8426217792 /Users/marwanalwali/AgdarCentre/core/templatetags/tenant_tags.py changed, reloading. +INFO 2025-11-04 02:11:16,968 autoreload 9647 8426217792 Watching for file changes with StatReloader +INFO 2025-11-04 02:11:40,630 basehttp 9647 6204862464 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:11:40,850 basehttp 9647 6204862464 "GET /__debug__/history_sidebar/?request_id=95407e017de944219de44e0801d1fc7f HTTP/1.1" 200 9549 +INFO 2025-11-04 02:12:10,603 basehttp 9647 6204862464 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:12:10,825 basehttp 9647 6204862464 "GET /__debug__/history_sidebar/?request_id=7c0bbc7a660d452aadcb1dc4fa89506e HTTP/1.1" 200 9547 +INFO 2025-11-04 02:12:40,579 basehttp 9647 6204862464 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:12:40,796 basehttp 9647 6204862464 "GET /__debug__/history_sidebar/?request_id=42a0329804c74952a6cd47cf7a10ab42 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:13:10,600 basehttp 9647 6204862464 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:13:10,819 basehttp 9647 6204862464 "GET /__debug__/history_sidebar/?request_id=b64d89ea966f4944a261502f6eb43fd9 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:13:40,621 basehttp 9647 6204862464 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:13:40,842 basehttp 9647 6204862464 "GET /__debug__/history_sidebar/?request_id=2cdb4405f5764e8c82649febde3f18b4 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:13:50,385 basehttp 9647 6204862464 "GET /en/staff/c5feb17d-5fcc-407b-abcc-672f0be43b6f/edit/ HTTP/1.1" 200 44544 +INFO 2025-11-04 02:13:50,531 basehttp 9647 6204862464 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +INFO 2025-11-04 02:13:50,560 basehttp 9647 6221688832 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:13:53,303 basehttp 9647 6221688832 "POST /en/accounts/logout/ HTTP/1.1" 302 0 +INFO 2025-11-04 02:13:53,363 basehttp 9647 6221688832 "GET / HTTP/1.1" 200 46194 +INFO 2025-11-04 02:13:55,880 basehttp 9647 6221688832 "GET /accounts/login/ HTTP/1.1" 302 0 +INFO 2025-11-04 02:13:55,938 basehttp 9647 6204862464 "GET /en/accounts/login/ HTTP/1.1" 200 24865 +INFO 2025-11-04 02:13:55,949 basehttp 9647 6204862464 "GET /static/img/logo/logo-admin-apple.png HTTP/1.1" 200 6546 +INFO 2025-11-04 02:13:55,949 basehttp 9647 6221688832 "GET /static/img/logo/logo-admin.png HTTP/1.1" 200 6181 +INFO 2025-11-04 02:14:00,578 basehttp 9647 6221688832 "GET /en/accounts/login/ HTTP/1.1" 200 24865 +INFO 2025-11-04 02:14:12,888 autoreload 11240 8426217792 Watching for file changes with StatReloader +INFO 2025-11-04 02:14:15,056 basehttp 11240 6161657856 "GET /en/accounts/login/ HTTP/1.1" 200 24865 +INFO 2025-11-04 02:14:16,995 basehttp 11240 6161657856 "GET /en/accounts/login/ HTTP/1.1" 200 24865 +WARNING 2025-11-04 02:14:19,278 basehttp 11240 6178484224 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:14:19,312 log 11240 6161657856 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:14:19,312 basehttp 11240 6161657856 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:14:23,114 basehttp 11240 6161657856 "GET /en/accounts/login/ HTTP/1.1" 200 24865 +WARNING 2025-11-04 02:14:23,208 log 11240 6161657856 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:14:23,209 basehttp 11240 6161657856 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:14:23,842 basehttp 11240 6161657856 "GET /static/css/custom.css HTTP/1.1" 200 580 +INFO 2025-11-04 02:14:23,842 basehttp 11240 6178484224 "GET /static/plugins/toastr/toastr.css HTTP/1.1" 200 7860 +INFO 2025-11-04 02:14:23,843 basehttp 11240 6178484224 "GET /static/img/logo/logo-admin.png HTTP/1.1" 200 6181 +INFO 2025-11-04 02:14:23,844 basehttp 11240 6228963328 "GET /static/debug_toolbar/js/toolbar.js HTTP/1.1" 200 14879 +INFO 2025-11-04 02:14:23,845 basehttp 11240 6161657856 "GET /static/img/logo/logo-admin-apple.png HTTP/1.1" 200 6546 +INFO 2025-11-04 02:14:23,848 basehttp 11240 6161657856 "GET /static/plugins/toastr/toastr.min.js HTTP/1.1" 200 5536 +INFO 2025-11-04 02:14:23,850 basehttp 11240 6245789696 "GET /static/js/htmx.min.js HTTP/1.1" 200 51076 +INFO 2025-11-04 02:14:23,851 basehttp 11240 6212136960 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-11-04 02:14:23,854 basehttp 11240 6161657856 "GET /static/js/select2-init.js HTTP/1.1" 200 2415 +INFO 2025-11-04 02:14:23,854 basehttp 11240 6245789696 "GET /static/debug_toolbar/css/toolbar.css HTTP/1.1" 200 29468 +INFO 2025-11-04 02:14:23,854 basehttp 11240 6228963328 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-11-04 02:14:23,855 basehttp 11240 6195310592 "GET /static/css/default/app.min.css HTTP/1.1" 200 1030608 +INFO 2025-11-04 02:14:23,861 basehttp 11240 6178484224 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-11-04 02:14:23,975 basehttp 11240 6195310592 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +INFO 2025-11-04 02:14:23,977 basehttp 11240 6178484224 "GET /static/css/default/images/bg-login.png HTTP/1.1" 200 425929 +INFO 2025-11-04 02:14:24,000 basehttp 11240 6178484224 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 2154602 +INFO 2025-11-04 02:14:24,047 basehttp 11240 6178484224 "GET /static/debug_toolbar/css/print.css HTTP/1.1" 200 43 +WARNING 2025-11-04 02:14:24,048 basehttp 11240 6195310592 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 02:14:24,049 basehttp 11240 6178484224 "GET /static/debug_toolbar/js/utils.js HTTP/1.1" 200 4700 +INFO 2025-11-04 02:14:24,093 basehttp 11240 6195310592 "GET /static/img/logo/site.webmanifest HTTP/1.1" 200 436 +INFO 2025-11-04 02:14:24,094 basehttp 11240 6178484224 "GET /static/img/logo/favicon.ico HTTP/1.1" 200 15086 +INFO 2025-11-04 02:16:08,047 basehttp 11240 6178484224 "GET /en/accounts/login/ HTTP/1.1" 200 24866 +INFO 2025-11-04 02:16:08,063 basehttp 11240 6178484224 "GET /static/img/logo/tenhal_logo.png HTTP/1.1" 200 8513 +WARNING 2025-11-04 02:16:08,128 basehttp 11240 6178484224 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:16:08,153 log 11240 6228963328 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:16:08,153 basehttp 11240 6228963328 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 02:16:09,898 basehttp 11240 6228963328 "GET /en/accounts/login/ HTTP/1.1" 200 24866 +WARNING 2025-11-04 02:16:09,964 basehttp 11240 6245789696 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:16:09,975 log 11240 6228963328 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:16:09,975 basehttp 11240 6228963328 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:16:17,103 basehttp 11240 6228963328 "GET /en/accounts/login/ HTTP/1.1" 200 24866 +INFO 2025-11-04 02:16:17,115 basehttp 11240 6212136960 "GET /static/css/custom.css HTTP/1.1" 200 580 +INFO 2025-11-04 02:16:17,115 basehttp 11240 6178484224 "GET /static/plugins/toastr/toastr.css HTTP/1.1" 200 7860 +INFO 2025-11-04 02:16:17,116 basehttp 11240 6262616064 "GET /static/img/logo/logo-admin-apple.png HTTP/1.1" 200 6546 +INFO 2025-11-04 02:16:17,117 basehttp 11240 6245789696 "GET /static/debug_toolbar/js/toolbar.js HTTP/1.1" 200 14879 +INFO 2025-11-04 02:16:17,118 basehttp 11240 6178484224 "GET /static/img/logo/tenhal_logo.png HTTP/1.1" 200 8513 +INFO 2025-11-04 02:16:17,124 basehttp 11240 6212136960 "GET /static/js/htmx.min.js HTTP/1.1" 200 51076 +INFO 2025-11-04 02:16:17,130 basehttp 11240 6212136960 "GET /static/plugins/toastr/toastr.min.js HTTP/1.1" 200 5536 +INFO 2025-11-04 02:16:17,132 basehttp 11240 6161657856 "GET /static/css/vendor.min.css HTTP/1.1" 200 177466 +INFO 2025-11-04 02:16:17,135 basehttp 11240 6178484224 "GET /static/js/app.min.js HTTP/1.1" 200 110394 +INFO 2025-11-04 02:16:17,135 basehttp 11240 6212136960 "GET /static/js/select2-init.js HTTP/1.1" 200 2415 +INFO 2025-11-04 02:16:17,138 basehttp 11240 6161657856 "GET /static/debug_toolbar/css/toolbar.css HTTP/1.1" 200 29468 +INFO 2025-11-04 02:16:17,143 basehttp 11240 6228963328 "GET /static/css/default/app.min.css HTTP/1.1" 200 1030608 +INFO 2025-11-04 02:16:17,143 basehttp 11240 6262616064 "GET /static/js/vendor.min.js HTTP/1.1" 200 1091361 +INFO 2025-11-04 02:16:17,169 basehttp 11240 6262616064 "GET /static/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 158220 +WARNING 2025-11-04 02:16:17,196 log 11240 6245789696 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:16:17,196 basehttp 11240 6245789696 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:16:17,275 basehttp 11240 6245789696 "GET /static/css/default/images/bg-login.png HTTP/1.1" 200 425929 +INFO 2025-11-04 02:16:17,291 basehttp 11240 6262616064 "GET /static/debug_toolbar/css/print.css HTTP/1.1" 200 43 +WARNING 2025-11-04 02:16:17,293 basehttp 11240 6228963328 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 02:16:17,294 basehttp 11240 6245789696 "GET /static/css/default/app.min.css.map HTTP/1.1" 200 2154602 +INFO 2025-11-04 02:16:17,294 basehttp 11240 6262616064 "GET /static/debug_toolbar/js/utils.js HTTP/1.1" 200 4700 +INFO 2025-11-04 02:16:17,380 basehttp 11240 6195310592 "GET /static/img/logo/site.webmanifest HTTP/1.1" 200 436 +INFO 2025-11-04 02:16:17,380 basehttp 11240 6245789696 "GET /static/img/logo/favicon.ico HTTP/1.1" 200 15086 +INFO 2025-11-04 02:18:13,720 autoreload 11240 8426217792 /Users/marwanalwali/AgdarCentre/core/templatetags/tenant_tags.py changed, reloading. +INFO 2025-11-04 02:18:14,031 autoreload 13274 8426217792 Watching for file changes with StatReloader +INFO 2025-11-04 02:18:18,177 basehttp 13274 6131003392 "GET /en/accounts/login/ HTTP/1.1" 200 24846 +INFO 2025-11-04 02:18:18,193 basehttp 13274 6147829760 "GET /static/img/logo/Agdar-Logo.png HTTP/1.1" 200 12528 +WARNING 2025-11-04 02:18:18,246 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:18:18,246 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 02:18:18,259 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 02:18:39,258 basehttp 13274 6147829760 "GET /en/accounts/login/ HTTP/1.1" 200 24842 +WARNING 2025-11-04 02:18:39,322 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:18:39,354 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:18:39,354 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:23:58,998 basehttp 13274 6131003392 "GET /en/accounts/login/ HTTP/1.1" 200 24877 +WARNING 2025-11-04 02:23:59,078 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:23:59,104 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:23:59,104 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:24:05,583 basehttp 13274 6131003392 "POST /en/accounts/login/ HTTP/1.1" 302 0 +INFO 2025-11-04 02:24:05,646 basehttp 13274 6131003392 "GET /dashboard/ HTTP/1.1" 302 0 +INFO 2025-11-04 02:24:05,736 basehttp 13274 6147829760 "GET /en/dashboard/ HTTP/1.1" 200 59397 +INFO 2025-11-04 02:24:05,770 basehttp 13274 13186969600 "GET /static/css/saudiriyalsymbol.woff2 HTTP/1.1" 200 720 +INFO 2025-11-04 02:24:05,774 basehttp 13274 13170143232 "GET /static/plugins/apexcharts/dist/apexcharts.min.js HTTP/1.1" 200 574941 +WARNING 2025-11-04 02:24:05,790 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:24:06,050 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:24:06,053 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:24:06,060 basehttp 13274 6131003392 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 200 12528 +INFO 2025-11-04 02:24:06,074 basehttp 13274 6164656128 "GET /media/profile_pictures/Father_-d_HcbHEbL.png HTTP/1.1" 200 1997779 +INFO 2025-11-04 02:24:06,074 basehttp 13274 13186969600 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:24:22,978 basehttp 13274 13186969600 "GET /en/settings/ HTTP/1.1" 200 48095 +WARNING 2025-11-04 02:24:23,043 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:24:23,086 log 13274 13186969600 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:24:23,086 basehttp 13274 13186969600 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 02:24:23,119 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:24:25,434 basehttp 13274 6164656128 "GET /en/dashboard/ HTTP/1.1" 200 59399 +WARNING 2025-11-04 02:24:25,515 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:24:25,515 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:24:25,515 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:24:25,579 basehttp 13274 13186969600 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:24:27,866 basehttp 13274 13186969600 "GET /en/notifications/api/dropdown/ HTTP/1.1" 200 773 +INFO 2025-11-04 02:24:28,084 basehttp 13274 13186969600 "GET /__debug__/history_sidebar/?request_id=9289b539e0e141249f1db53df673091a HTTP/1.1" 200 9540 +INFO 2025-11-04 02:24:41,219 basehttp 13274 13186969600 "GET /en/admin/notifications/notification/ HTTP/1.1" 200 71584 +INFO 2025-11-04 02:24:41,233 basehttp 13274 13186969600 "GET /static/admin/css/base.css HTTP/1.1" 200 22120 +INFO 2025-11-04 02:24:41,234 basehttp 13274 13186969600 "GET /static/admin/css/dark_mode.css HTTP/1.1" 200 2808 +INFO 2025-11-04 02:24:41,234 basehttp 13274 6164656128 "GET /static/admin/js/theme.js HTTP/1.1" 200 1653 +INFO 2025-11-04 02:24:41,237 basehttp 13274 13186969600 "GET /static/admin/js/jquery.init.js HTTP/1.1" 200 347 +INFO 2025-11-04 02:24:41,238 basehttp 13274 6131003392 "GET /static/admin/css/nav_sidebar.css HTTP/1.1" 200 2810 +INFO 2025-11-04 02:24:41,238 basehttp 13274 6164656128 "GET /static/admin/js/core.js HTTP/1.1" 200 6208 +INFO 2025-11-04 02:24:41,239 basehttp 13274 6147829760 "GET /static/admin/css/changelists.css HTTP/1.1" 200 6878 +INFO 2025-11-04 02:24:41,240 basehttp 13274 6164656128 "GET /static/admin/js/actions.js HTTP/1.1" 200 8076 +INFO 2025-11-04 02:24:41,241 basehttp 13274 6131003392 "GET /static/admin/js/admin/RelatedObjectLookups.js HTTP/1.1" 200 9777 +INFO 2025-11-04 02:24:41,241 basehttp 13274 13186969600 "GET /static/admin/css/responsive.css HTTP/1.1" 200 16565 +INFO 2025-11-04 02:24:41,245 basehttp 13274 6147829760 "GET /static/admin/js/urlify.js HTTP/1.1" 200 7887 +INFO 2025-11-04 02:24:41,245 basehttp 13274 6164656128 "GET /static/admin/js/prepopulate.js HTTP/1.1" 200 1531 +INFO 2025-11-04 02:24:41,247 basehttp 13274 6164656128 "GET /static/admin/img/icon-yes.svg HTTP/1.1" 200 436 +INFO 2025-11-04 02:24:41,247 basehttp 13274 6147829760 "GET /static/admin/img/search.svg HTTP/1.1" 200 458 +INFO 2025-11-04 02:24:41,252 basehttp 13274 6131003392 "GET /static/admin/js/vendor/xregexp/xregexp.js HTTP/1.1" 200 325171 +INFO 2025-11-04 02:24:41,252 basehttp 13274 13203795968 "GET /static/admin/js/vendor/jquery/jquery.js HTTP/1.1" 200 285314 +INFO 2025-11-04 02:24:41,254 basehttp 13274 13203795968 "GET /static/admin/js/nav_sidebar.js HTTP/1.1" 200 3063 +INFO 2025-11-04 02:24:41,258 basehttp 13274 13203795968 "GET /static/admin/js/filters.js HTTP/1.1" 200 978 +INFO 2025-11-04 02:24:41,371 basehttp 13274 13170143232 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +WARNING 2025-11-04 02:24:41,375 log 13274 13186969600 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:24:41,375 basehttp 13274 13186969600 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:24:41,390 basehttp 13274 13186969600 "GET /static/admin/img/icon-addlink.svg HTTP/1.1" 200 331 +INFO 2025-11-04 02:24:41,391 basehttp 13274 13203795968 "GET /static/admin/img/sorting-icons.svg HTTP/1.1" 200 1097 +INFO 2025-11-04 02:24:41,391 basehttp 13274 13170143232 "GET /static/admin/img/tooltag-add.svg HTTP/1.1" 200 331 +INFO 2025-11-04 02:24:41,391 basehttp 13274 6131003392 "GET /static/admin/img/icon-viewlink.svg HTTP/1.1" 200 581 +WARNING 2025-11-04 02:24:41,466 log 13274 6131003392 Not Found: /favicon.ico +WARNING 2025-11-04 02:24:41,466 basehttp 13274 6131003392 "GET /favicon.ico HTTP/1.1" 404 16684 +INFO 2025-11-04 02:24:46,495 basehttp 13274 6131003392 "GET /en/admin/notifications/notificationpreference/ HTTP/1.1" 200 108425 +INFO 2025-11-04 02:24:46,515 basehttp 13274 13170143232 "GET /static/admin/img/icon-no.svg HTTP/1.1" 200 560 +INFO 2025-11-04 02:24:46,636 basehttp 13274 13203795968 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +WARNING 2025-11-04 02:24:46,637 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:24:46,637 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:24:56,558 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:24:57,485 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d2c779306df04804af7f0f07d3e68c30 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:24:59,676 basehttp 13274 6131003392 "GET /en/admin/notifications/notification/ HTTP/1.1" 200 71582 +INFO 2025-11-04 02:24:59,811 basehttp 13274 13203795968 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +WARNING 2025-11-04 02:24:59,812 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:24:59,812 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:25:06,055 basehttp 13274 6131003392 "GET /en/admin/notifications/message/ HTTP/1.1" 200 75786 +INFO 2025-11-04 02:25:06,245 basehttp 13274 13203795968 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +WARNING 2025-11-04 02:25:06,247 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:25:06,247 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:25:12,052 basehttp 13274 6131003392 "GET /en/admin/notifications/notification/ HTTP/1.1" 200 71584 +INFO 2025-11-04 02:25:12,190 basehttp 13274 13203795968 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +WARNING 2025-11-04 02:25:12,191 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:25:12,191 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:25:14,240 basehttp 13274 6131003392 "GET /en/admin/notifications/notification/add/ HTTP/1.1" 200 77083 +INFO 2025-11-04 02:25:14,265 basehttp 13274 13203795968 "GET /static/admin/css/forms.css HTTP/1.1" 200 8525 +INFO 2025-11-04 02:25:14,265 basehttp 13274 13186969600 "GET /static/admin/js/calendar.js HTTP/1.1" 200 9141 +INFO 2025-11-04 02:25:14,265 basehttp 13274 6164656128 "GET /static/admin/js/prepopulate_init.js HTTP/1.1" 200 586 +INFO 2025-11-04 02:25:14,265 basehttp 13274 6147829760 "GET /static/admin/js/admin/DateTimeShortcuts.js HTTP/1.1" 200 19319 +INFO 2025-11-04 02:25:14,271 basehttp 13274 6147829760 "GET /static/admin/css/widgets.css HTTP/1.1" 200 11973 +INFO 2025-11-04 02:25:14,272 basehttp 13274 6147829760 "GET /static/admin/img/icon-changelink.svg HTTP/1.1" 200 380 +INFO 2025-11-04 02:25:14,274 basehttp 13274 6147829760 "GET /static/admin/js/change_form.js HTTP/1.1" 200 606 +INFO 2025-11-04 02:25:14,381 basehttp 13274 13170143232 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +WARNING 2025-11-04 02:25:14,382 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:25:14,382 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:25:14,409 basehttp 13274 13170143232 "GET /static/admin/img/icon-clock.svg HTTP/1.1" 200 677 +INFO 2025-11-04 02:25:14,410 basehttp 13274 6131003392 "GET /static/admin/img/icon-calendar.svg HTTP/1.1" 200 1086 +INFO 2025-11-04 02:25:26,578 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:25:27,493 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=81a668de57a74cf4ab5f6f13485da0f8 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:25:56,558 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:25:57,491 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e9fc00ba56ef408faa561f135064cecd HTTP/1.1" 200 9547 +INFO 2025-11-04 02:26:21,883 basehttp 13274 6131003392 "POST /en/admin/notifications/notification/add/ HTTP/1.1" 302 0 +INFO 2025-11-04 02:26:21,974 basehttp 13274 6131003392 "GET /en/admin/notifications/notification/ HTTP/1.1" 200 72572 +INFO 2025-11-04 02:26:22,110 basehttp 13274 13170143232 "GET /en/admin/jsi18n/ HTTP/1.1" 200 3342 +WARNING 2025-11-04 02:26:22,111 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:26:22,111 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:26:25,571 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:26:25,800 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fe9cd08cc3c24c9fa7babfa10730b9e5 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:26:29,144 basehttp 13274 6131003392 "GET /en/notifications/api/dropdown/ HTTP/1.1" 200 1006 +INFO 2025-11-04 02:26:29,373 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c609382cf3144f70ae7b3600a98128c3 HTTP/1.1" 200 9540 +INFO 2025-11-04 02:26:37,355 basehttp 13274 6131003392 "GET /en/notifications/inbox/ HTTP/1.1" 200 39866 +WARNING 2025-11-04 02:26:37,423 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:26:37,585 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:26:37,585 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:26:37,602 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 02:27:03,527 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:27:03,560 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:27:03,560 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:27:34,576 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:27:35,492 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=2b1b37644da0403e8de6ca64485d0ecb HTTP/1.1" 200 9549 +INFO 2025-11-04 02:28:04,544 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:28:05,493 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=beec02f57de34356907dc70efc200d7e HTTP/1.1" 200 9547 +INFO 2025-11-04 02:28:34,559 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:28:35,491 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=660336fdc1a546cbb19c9396852021a6 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:29:04,558 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:29:05,481 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=54736911df58444089157f112ff780ff HTTP/1.1" 200 9547 +INFO 2025-11-04 02:29:34,557 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:29:35,494 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=bcbfe1f1416d46fdb2632e63ffa5ff02 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:30:00,009 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 02:30:00,009 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-03 23:30:00.009459+00:00'} +INFO 2025-11-04 02:30:00,014 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 02:30:00,015 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-03 23:30:00.014993+00:00'} +INFO 2025-11-04 02:30:04,558 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:30:05,489 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=2bd1b2be26094b118cc11578929dedc4 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:30:34,540 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:30:35,475 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=02a3a2fa01794983a17094ad05f89b29 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:31:35,561 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:31:36,481 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=9224d4f9d1ad4ccd8b17ee06570957b4 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:32:03,587 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:32:03,807 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=b285b37b28934df3b165e42983ed6aa4 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:32:33,581 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:32:33,803 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=b4d6559691484657b8c88c2cbde7d379 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:33:03,606 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:33:03,824 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=9040faf1e26c42e2ae8266eb5dd64803 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:33:33,622 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:33:33,837 basehttp 13274 13170143232 "GET /__debug__/history_sidebar/?request_id=0931cca6e494496597afedef95632704 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:34:00,051 basehttp 13274 13170143232 "GET /en/dashboard/ HTTP/1.1" 200 59407 +WARNING 2025-11-04 02:34:00,145 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:34:00,263 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:34:00,263 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:34:00,264 basehttp 13274 6131003392 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +INFO 2025-11-04 02:34:00,283 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:34:06,370 basehttp 13274 6147829760 "GET /en/notifications/api/dropdown/ HTTP/1.1" 200 1006 +INFO 2025-11-04 02:34:06,600 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=475abd421ad142c8b2c638c3f493d02b HTTP/1.1" 200 9540 +INFO 2025-11-04 02:34:14,049 basehttp 13274 6147829760 "GET /en/settings/ HTTP/1.1" 200 48095 +WARNING 2025-11-04 02:34:14,130 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:34:14,130 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:34:14,130 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:34:14,195 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:34:19,707 basehttp 13274 6131003392 "GET /en/settings/BASIC/ HTTP/1.1" 200 48524 +WARNING 2025-11-04 02:34:19,777 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:34:19,783 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:34:19,783 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:34:19,836 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:34:39,062 basehttp 13274 6147829760 "GET /en/settings/ HTTP/1.1" 200 48096 +WARNING 2025-11-04 02:34:39,130 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:34:39,159 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:34:39,159 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:34:39,202 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:34:41,969 basehttp 13274 6131003392 "GET /en/settings/ZATCA/ HTTP/1.1" 200 43180 +WARNING 2025-11-04 02:34:42,023 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:34:42,168 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:34:42,168 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:34:42,186 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 02:34:57,407 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:34:57,488 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:34:57,488 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:35:27,604 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:35:27,826 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=9cec183a15764e33ab382ab3b5e273a2 HTTP/1.1" 200 9549 +WARNING 2025-11-04 02:35:32,949 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:35:32,978 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:35:32,978 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 02:35:33,777 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:35:33,809 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:35:33,809 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 02:35:34,689 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:35:34,705 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:35:34,705 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:36:04,795 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:36:05,016 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=0a9b30829b6a4670b45651e769997ab0 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:36:34,785 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:36:35,007 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=a33ea65b61ee4f2a95dff2b31f222e66 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:37:04,768 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:37:04,997 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=97a7500499cb435e877fb4fb089c75f7 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:37:34,775 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:37:34,991 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=71b124e185b0423b8f1aace98927afa9 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:38:04,775 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:38:05,005 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=4bb17e6cb7c24805b3960f9cde8e4752 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:38:34,769 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:38:34,987 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=fe94884536724e99abc28d2c4c5a2e20 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:39:05,650 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:39:06,578 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=789609b5cc8f4a3d8000c69fd2d3d419 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:39:35,622 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:39:36,568 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=c8d7ec7d73ca4fb9a6c1bd3b8fd6667e HTTP/1.1" 200 9547 +INFO 2025-11-04 02:40:36,620 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:40:37,564 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7e5f065689ee41b0970661c23838c20f HTTP/1.1" 200 9547 +INFO 2025-11-04 02:41:37,623 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:41:38,564 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a55fa7495fbb43cb91693c4f46189935 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:42:38,618 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:42:39,563 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7f54a01fb0f54d7ea129c26089005ca7 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:43:39,657 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:43:40,565 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b1baccf91d1f4c4baf871a048c212710 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:44:40,622 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:44:41,564 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cc09e170bf934c17becabf040e6966be HTTP/1.1" 200 9547 +INFO 2025-11-04 02:45:41,668 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:45:41,883 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5b4e01061eda41e792e62ca268df2033 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:45:44,089 basehttp 13274 6131003392 "GET /en/profile/ HTTP/1.1" 200 48117 +WARNING 2025-11-04 02:45:44,187 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 02:45:44,443 basehttp 13274 6147829760 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +INFO 2025-11-04 02:45:44,467 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 02:45:44,472 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:45:44,472 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:45:50,175 basehttp 13274 6131003392 "GET /en/profile/ HTTP/1.1" 200 48114 +WARNING 2025-11-04 02:45:50,256 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:45:50,256 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:45:50,257 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:45:50,317 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:46:20,319 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:46:20,543 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=b6d8cc34f9bb4cf4b28ebc560d69e3c0 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:46:50,341 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:46:50,557 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=6b0241772d6243009c90b9600c896b1c HTTP/1.1" 200 9547 +INFO 2025-11-04 02:47:20,354 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:47:20,575 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=608bc03d5f2b4f0398014119f30ae7d4 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:47:50,316 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:47:50,531 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=fda832ba8ffb4ecd88e6b66f3596ace9 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:48:20,314 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:48:20,530 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=549f90d74fb943aba32686cd98758e63 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:48:50,333 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:48:50,546 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=337f0e1d11444741932ab7266008c156 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:49:20,341 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:49:20,558 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=75f02bf4624f48009100b742c60fe12b HTTP/1.1" 200 9547 +INFO 2025-11-04 02:49:50,332 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:49:50,550 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=f0852e280c6d4b7b95e172c46269add3 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:50:20,316 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:50:20,531 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=b4d459c7fa544ddba80358e89bba1811 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:50:50,346 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:50:50,560 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=f6b699047ad942b1b3a934b9171b7dd9 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:51:20,355 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:51:20,574 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=34b9e4e510e248ce97591b9621506e81 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:51:50,351 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:51:50,579 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=9679d351637c46edabaa94d8f869b3fe HTTP/1.1" 200 9547 +INFO 2025-11-04 02:52:20,369 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:52:20,585 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=e7d4382684bd4184a516cdf44f85f94d HTTP/1.1" 200 9549 +INFO 2025-11-04 02:52:50,324 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:52:50,539 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=e898997acc3a44d4aa15e70a508f3815 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:53:20,368 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:53:20,590 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=8069ab6dc6454521bc27a4a58a21f537 HTTP/1.1" 200 9549 +INFO 2025-11-04 02:53:50,326 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:53:50,540 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=3c9d261f37f440aea3ab4449c4f3be76 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:53:52,700 basehttp 13274 6164656128 "GET /en/profile/ HTTP/1.1" 200 50748 +WARNING 2025-11-04 02:53:52,760 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:53:52,933 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:53:52,933 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:53:52,934 basehttp 13274 6131003392 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +INFO 2025-11-04 02:53:52,945 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:54:11,044 basehttp 13274 13170143232 "POST /en/my-hr/clock-in-out/ HTTP/1.1" 302 0 +INFO 2025-11-04 02:54:11,113 basehttp 13274 13170143232 "GET /en/profile/ HTTP/1.1" 200 51071 +WARNING 2025-11-04 02:54:11,180 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:11,235 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:11,236 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:54:11,304 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:54:17,407 basehttp 13274 6131003392 "GET /en/profile/ HTTP/1.1" 200 50747 +WARNING 2025-11-04 02:54:17,471 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:17,527 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:17,528 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:54:17,557 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:54:28,081 basehttp 13274 13170143232 "POST /en/my-hr/clock-in-out/ HTTP/1.1" 302 0 +INFO 2025-11-04 02:54:28,149 basehttp 13274 13170143232 "GET /en/profile/ HTTP/1.1" 200 51076 +WARNING 2025-11-04 02:54:28,214 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:28,254 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:28,254 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:54:28,297 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:54:36,520 basehttp 13274 6131003392 "GET /en/profile/ HTTP/1.1" 200 50747 +WARNING 2025-11-04 02:54:36,575 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:36,600 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:36,601 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 02:54:37,421 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:37,483 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:37,484 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +WARNING 2025-11-04 02:54:37,900 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:37,925 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:37,925 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 02:54:38,186 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:38,213 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:38,214 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:54:57,476 basehttp 13274 6131003392 "GET /en/ot/sessions/ HTTP/1.1" 200 67881 +WARNING 2025-11-04 02:54:57,546 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:54:57,586 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:54:57,586 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:54:57,628 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:55:05,103 basehttp 13274 6147829760 "GET /en/ot/sessions/1dc2c631-fef1-41a7-8f2b-901cc090ae4d/ HTTP/1.1" 200 49079 +WARNING 2025-11-04 02:55:05,172 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:55:05,265 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:55:05,265 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:55:05,279 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:55:35,249 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:55:35,479 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7d4100ad91f541a98afe78441566bdc4 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:56:05,259 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:56:05,483 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=255ea15d2bf74a71a2e473e48058dc8a HTTP/1.1" 200 9547 +INFO 2025-11-04 02:56:35,255 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:56:35,483 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b4da637d213544fb862f88ba408221a2 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:57:05,314 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:57:05,341 basehttp 13274 6147829760 "GET /en/ot/sessions/1dc2c631-fef1-41a7-8f2b-901cc090ae4d/ HTTP/1.1" 200 49089 +WARNING 2025-11-04 02:57:05,404 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:57:05,462 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:57:05,462 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:57:05,489 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:57:35,476 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:57:35,701 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=775845d46406457aadc52e7d417c38b7 HTTP/1.1" 200 9547 +INFO 2025-11-04 02:58:04,537 basehttp 13274 6131003392 "GET /en/dashboard/ HTTP/1.1" 200 66230 +WARNING 2025-11-04 02:58:04,606 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:58:04,636 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:58:04,637 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:58:04,684 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:58:13,217 basehttp 13274 6147829760 "GET /en/slp/assessments/ HTTP/1.1" 200 61079 +WARNING 2025-11-04 02:58:13,285 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:58:13,310 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:58:13,310 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 02:58:13,364 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:58:15,657 basehttp 13274 6131003392 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45091 +WARNING 2025-11-04 02:58:15,724 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:58:15,767 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:58:15,767 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 02:58:15,808 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:58:45,790 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:58:46,018 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=06450eed069b4dd684f750ebc1d0c60f HTTP/1.1" 200 9547 +INFO 2025-11-04 02:59:03,086 basehttp 13274 6147829760 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45101 +WARNING 2025-11-04 02:59:03,149 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 02:59:03,209 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 02:59:03,209 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 02:59:03,241 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:59:33,660 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 02:59:34,577 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1f8b59910d4b4bdd898f69cb789bb7f8 HTTP/1.1" 200 9548 +INFO 2025-11-04 03:00:00,003 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 03:00:00,004 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 00:00:00.004136+00:00'} +INFO 2025-11-04 03:00:00,007 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 03:00:00,007 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 00:00:00.007690+00:00'} +INFO 2025-11-04 03:00:03,635 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:00:04,577 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6b3f60de0b334b33bd5c6802506b0e59 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:00:33,635 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:00:34,577 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=783a0e03500d4abd82223c0e8ba13c80 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:01:03,641 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:01:04,581 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a841779098f24919b86b71459665785e HTTP/1.1" 200 9547 +INFO 2025-11-04 03:01:33,682 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:01:34,588 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f699a56eda8b40698a4f4f2feb3c758a HTTP/1.1" 200 9549 +INFO 2025-11-04 03:01:46,461 basehttp 13274 6131003392 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45091 +WARNING 2025-11-04 03:01:46,539 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 03:01:46,682 basehttp 13274 6131003392 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +WARNING 2025-11-04 03:01:46,686 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:01:46,686 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:01:46,706 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:02:16,663 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:02:17,594 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=17cd8402bff840478d9854ef9f481a9e HTTP/1.1" 200 9547 +INFO 2025-11-04 03:02:46,644 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:02:47,592 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=a87df15cea294258963d13bbaabd270a HTTP/1.1" 200 9547 +INFO 2025-11-04 03:03:16,651 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:03:17,595 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=c23f052e6e5540fbbb55886940c0968c HTTP/1.1" 200 9547 +INFO 2025-11-04 03:03:46,674 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:03:47,590 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=6b48d64c3f1744fe827308f2bfde0052 HTTP/1.1" 200 9548 +INFO 2025-11-04 03:03:55,174 basehttp 13274 6164656128 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45096 +WARNING 2025-11-04 03:03:55,253 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:03:55,328 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:03:55,328 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:03:55,385 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:04:25,315 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:04:25,527 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=204e4171c958414892e2d48b9553a09c HTTP/1.1" 200 9547 +INFO 2025-11-04 03:04:28,754 basehttp 13274 6147829760 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45099 +WARNING 2025-11-04 03:04:28,812 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:04:28,935 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:04:28,936 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:04:28,956 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:04:38,986 basehttp 13274 6164656128 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45091 +WARNING 2025-11-04 03:04:39,048 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:04:39,110 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:04:39,110 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:04:39,140 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:05:09,107 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:05:09,322 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=6e22ac9b1ddc4e44a7541d438d97b2cc HTTP/1.1" 200 9547 +INFO 2025-11-04 03:05:17,480 basehttp 13274 6147829760 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45099 +WARNING 2025-11-04 03:05:17,544 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:05:17,607 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:05:17,608 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:05:17,635 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:05:47,581 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:05:47,794 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=d59e8edbcc6840ec82f0145e46d72de4 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:06:17,568 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:06:17,780 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=93c9582f40e845ba82d1a4138a49fecc HTTP/1.1" 200 9547 +INFO 2025-11-04 03:06:25,890 basehttp 13274 6164656128 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45362 +WARNING 2025-11-04 03:06:25,955 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:06:26,008 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:06:26,009 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:06:26,047 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:06:56,014 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:06:56,229 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=9fa63c0d7f894ac7acc4715ce28a0dc2 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:07:26,009 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:07:26,223 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=d625b02c8a104e47b6100799e447780a HTTP/1.1" 200 9547 +INFO 2025-11-04 03:07:56,014 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:07:56,227 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=5d283886e3d34761bc1e425bb3ccde88 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:08:18,863 basehttp 13274 6147829760 "GET /en/slp/assessments/0e933edd-1e01-479d-8e81-abf20e930c3e/ HTTP/1.1" 200 45372 +WARNING 2025-11-04 03:08:18,937 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:08:18,988 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:08:18,988 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:08:19,017 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 03:08:32,834 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:08:32,870 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:08:32,870 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:08:34,322 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:08:34,384 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:08:34,384 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:08:37,859 basehttp 13274 6164656128 "GET /en/profile/ HTTP/1.1" 200 51037 +WARNING 2025-11-04 03:08:37,925 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:08:37,948 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:08:37,949 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:08:37,994 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:08:43,898 basehttp 13274 6131003392 "POST /en/my-hr/clock-in-out/ HTTP/1.1" 302 0 +INFO 2025-11-04 03:08:43,963 basehttp 13274 6131003392 "GET /en/profile/ HTTP/1.1" 200 51360 +WARNING 2025-11-04 03:08:44,019 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:08:44,091 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:08:44,091 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:08:44,120 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:09:14,116 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:09:14,345 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=34998cdc579747308c009a1cb472a966 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:09:44,105 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:09:44,332 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=8bee9f1d591e44fc95d59d91934d4b63 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:10:14,111 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:10:14,327 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=e958ceabd9b84955af235106b1573ca7 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:10:44,128 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:10:44,345 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9bf5677ca37e48dc88e99a93ba4938e8 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:11:02,606 basehttp 13274 6131003392 "GET /en/profile/ HTTP/1.1" 200 51374 +WARNING 2025-11-04 03:11:02,689 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 03:11:02,841 basehttp 13274 6131003392 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +WARNING 2025-11-04 03:11:02,845 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:11:02,845 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:11:02,857 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:11:07,879 basehttp 13274 6164656128 "POST /en/my-hr/clock-in-out/ HTTP/1.1" 302 0 +INFO 2025-11-04 03:11:07,979 basehttp 13274 6164656128 "GET /en/profile/ HTTP/1.1" 200 51696 +WARNING 2025-11-04 03:11:08,041 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:11:08,158 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:11:08,158 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:11:08,177 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:11:38,122 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:11:38,346 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=5d93061100b34f298c2831b55989c23f HTTP/1.1" 200 9547 +INFO 2025-11-04 03:12:08,136 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:12:08,358 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=13d6130372984b649be1f92e4a9bf561 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:12:38,101 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:12:38,322 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=a04f4308b9184f0ead79fe666dcb38c9 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:12:47,509 basehttp 13274 6147829760 "GET /en/profile/ HTTP/1.1" 200 51437 +WARNING 2025-11-04 03:12:47,570 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:12:47,687 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:12:47,688 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:12:47,727 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:12:58,851 basehttp 13274 6164656128 "GET /en/profile/password/ HTTP/1.1" 200 47919 +WARNING 2025-11-04 03:12:58,915 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:12:58,965 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:12:58,965 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 03:12:59,010 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:13:03,370 basehttp 13274 6147829760 "GET /en/profile/ HTTP/1.1" 200 51437 +WARNING 2025-11-04 03:13:03,434 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:13:03,464 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:13:03,464 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:13:03,507 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:13:15,973 basehttp 13274 6164656128 "GET /en/dashboard/ HTTP/1.1" 200 66848 +WARNING 2025-11-04 03:13:16,046 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:13:16,052 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:13:16,052 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:13:16,111 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:13:28,649 basehttp 13274 6147829760 "GET /en/ot/sessions/ HTTP/1.1" 200 68505 +WARNING 2025-11-04 03:13:28,713 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:13:28,855 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:13:28,855 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:13:28,890 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:13:30,526 basehttp 13274 6164656128 "GET /en/ot/sessions/1dc2c631-fef1-41a7-8f2b-901cc090ae4d/ HTTP/1.1" 200 49703 +WARNING 2025-11-04 03:13:30,595 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:13:30,625 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:13:30,627 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:13:30,667 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:14:00,672 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:14:00,900 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=f80ad4172c5e4cdebebd39e1787de57a HTTP/1.1" 200 9547 +INFO 2025-11-04 03:14:08,845 basehttp 13274 6147829760 "GET /en/notifications/api/dropdown/ HTTP/1.1" 200 1006 +INFO 2025-11-04 03:14:09,076 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=6e1e502031314974933df3edf09fdf89 HTTP/1.1" 200 9540 +INFO 2025-11-04 03:14:09,851 basehttp 13274 6147829760 "GET /en/notifications/inbox/ HTTP/1.1" 200 47311 +WARNING 2025-11-04 03:14:09,923 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:14:09,993 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:14:09,993 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:14:10,019 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:14:12,512 basehttp 13274 6164656128 "POST /en/notifications/inbox/4de00afa-364e-4c2c-b226-5acd3fd2b7f5/read/ HTTP/1.1" 302 0 +INFO 2025-11-04 03:14:12,577 basehttp 13274 6164656128 "GET /en/notifications/inbox/ HTTP/1.1" 200 46306 +WARNING 2025-11-04 03:14:12,641 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:14:12,682 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:14:12,682 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 03:14:12,714 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:14:22,030 basehttp 13274 6147829760 "GET /en/dashboard/ HTTP/1.1" 200 66847 +WARNING 2025-11-04 03:14:22,092 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:14:22,115 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:14:22,116 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:14:22,200 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:14:52,161 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:14:52,391 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=3142401cdb414b178748d3d36d32ccd0 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:15:22,182 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:15:22,410 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=cf19e15def764344a09581dbbd60099f HTTP/1.1" 200 9547 +INFO 2025-11-04 03:15:52,179 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:15:52,395 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=008da08951404d23abea87baa85b5a63 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:15:57,292 basehttp 13274 6164656128 "GET /en/staff/ HTTP/1.1" 200 126890 +WARNING 2025-11-04 03:15:57,356 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:15:57,402 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:15:57,402 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:15:57,449 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:16:02,474 basehttp 13274 6131003392 "GET /en/staff/c5feb17d-5fcc-407b-abcc-672f0be43b6f/ HTTP/1.1" 200 48237 +WARNING 2025-11-04 03:16:02,539 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:02,618 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:02,619 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:16:02,638 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:16:10,939 basehttp 13274 6164656128 "GET /en/staff/c5feb17d-5fcc-407b-abcc-672f0be43b6f/edit/ HTTP/1.1" 200 51981 +WARNING 2025-11-04 03:16:11,016 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:11,067 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:11,067 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:16:11,095 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:16:14,526 basehttp 13274 6131003392 "GET /en/staff/ HTTP/1.1" 200 126890 +WARNING 2025-11-04 03:16:14,594 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:14,659 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:14,659 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:16:14,684 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:16:25,899 basehttp 13274 6164656128 "GET /en/staff/e4b42801-b078-4506-bf5b-5fa78729da92/ HTTP/1.1" 200 48256 +WARNING 2025-11-04 03:16:25,956 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:26,080 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:26,080 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:16:26,100 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:16:28,592 basehttp 13274 6131003392 "POST /en/staff/e4b42801-b078-4506-bf5b-5fa78729da92/deactivate/ HTTP/1.1" 302 0 +INFO 2025-11-04 03:16:28,659 basehttp 13274 6131003392 "GET /en/staff/e4b42801-b078-4506-bf5b-5fa78729da92/ HTTP/1.1" 200 50168 +WARNING 2025-11-04 03:16:28,727 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:28,755 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:28,758 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:16:28,796 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:16:43,995 basehttp 13274 6164656128 "GET /en/staff/e4b42801-b078-4506-bf5b-5fa78729da92/ HTTP/1.1" 200 49833 +WARNING 2025-11-04 03:16:44,064 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:44,096 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:44,096 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:16:44,685 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:44,709 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:44,709 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:16:46,325 basehttp 13274 6164656128 "GET /en/staff/ HTTP/1.1" 200 126892 +WARNING 2025-11-04 03:16:46,390 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:16:46,414 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:16:46,415 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:16:46,462 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:17:16,486 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:17:16,716 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=36254fe00c9347c689fb9e0f686be887 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:17:46,507 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:17:46,728 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=934f9dbaf6584d2bbb218be92762c552 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:18:16,506 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:18:16,734 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=e758b8e1885a4d8d9ae2a3342bd81d8e HTTP/1.1" 200 9549 +INFO 2025-11-04 03:18:46,480 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:18:46,709 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=5b4859583e9d40db97703c1216dd7d41 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:19:16,488 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:19:16,707 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=c5256db7b97a4760ac43eb6bfb12371d HTTP/1.1" 200 9547 +INFO 2025-11-04 03:19:46,460 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:19:46,679 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=341e5c70812f4aa48c6346d1652204a7 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:20:16,472 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:20:16,703 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=940442da2b174ce9a205b83b0120ab52 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:20:46,652 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:20:47,559 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=50f99acdccb34d128b979fe49fd1d377 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:21:16,660 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:21:17,572 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=d955ed4b8cf14c4baa5ff6b57e9fd1b2 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:22:17,648 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:22:18,573 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=64ca8d616284437f8061973880115afe HTTP/1.1" 200 9547 +INFO 2025-11-04 03:23:18,656 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:23:19,584 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=00303dd8a85d418594e2381bffdbd234 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:24:19,636 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:24:20,568 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=39c05d25417d41afaf449160dab060e3 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:25:20,657 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:25:21,587 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=2a1ec3bcb9df4fedb2049c1df19239ee HTTP/1.1" 200 9547 +INFO 2025-11-04 03:26:21,652 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:26:22,585 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=ae9e989827f240838e9ac4523cbdd493 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:27:22,658 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:27:23,587 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=fcfeb43baec84083a071d7adb43e6534 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:28:23,676 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:28:24,587 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=1bd98ca81fb0439e98a2de153ed03900 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:29:24,638 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:29:25,572 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=af396be570d74b91bafc876d411447bb HTTP/1.1" 200 9547 +INFO 2025-11-04 03:30:00,015 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 03:30:00,015 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 00:30:00.015483+00:00'} +INFO 2025-11-04 03:30:00,022 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 03:30:00,022 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 00:30:00.022264+00:00'} +INFO 2025-11-04 03:30:25,658 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:30:26,577 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=03c0c20425e34d61a1e267be43a4aab3 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:31:02,964 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:31:03,190 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=2a2088bdf1df47689c7cd3d91638c9d2 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:31:08,740 basehttp 13274 6147829760 "GET /en/staff/create/ HTTP/1.1" 200 51722 +WARNING 2025-11-04 03:31:08,843 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 03:31:09,035 basehttp 13274 6147829760 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +WARNING 2025-11-04 03:31:09,039 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:31:09,039 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:31:09,063 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:31:18,270 basehttp 13274 13170143232 "GET /en/staff/ HTTP/1.1" 200 126899 +WARNING 2025-11-04 03:31:18,350 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:31:18,350 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:31:18,359 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +INFO 2025-11-04 03:31:18,414 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:31:27,676 basehttp 13274 13170143232 "GET /en/dashboard/ HTTP/1.1" 200 66846 +WARNING 2025-11-04 03:31:27,748 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:31:27,834 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:31:27,834 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:31:27,847 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:31:32,685 basehttp 13274 6147829760 "GET /en/consent-templates/ HTTP/1.1" 200 53153 +WARNING 2025-11-04 03:31:32,756 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:31:32,784 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:31:32,787 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:31:32,824 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:31:43,153 basehttp 13274 13170143232 "GET /en/consent-templates/84ad5968-cfd3-432d-9c3c-fc34b3b05127/ HTTP/1.1" 200 52040 +WARNING 2025-11-04 03:31:43,222 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:31:43,239 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:31:43,240 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:31:43,302 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:31:51,236 basehttp 13274 6147829760 "GET /en/consent-templates/84ad5968-cfd3-432d-9c3c-fc34b3b05127/delete/ HTTP/1.1" 200 44510 +WARNING 2025-11-04 03:31:51,303 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:31:51,334 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:31:51,334 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:31:51,391 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:31:56,745 basehttp 13274 13170143232 "GET /en/consent-templates/84ad5968-cfd3-432d-9c3c-fc34b3b05127/ HTTP/1.1" 200 52040 +WARNING 2025-11-04 03:31:56,812 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:31:56,873 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:31:56,873 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:31:56,905 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:32:20,034 basehttp 13274 6147829760 "GET /en/consent-templates/ HTTP/1.1" 200 53153 +WARNING 2025-11-04 03:32:20,102 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:20,166 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:20,166 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:32:20,197 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 03:32:22,626 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:22,660 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:22,660 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:32:22,831 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:22,862 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:22,862 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:32:23,050 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:23,132 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:23,133 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +WARNING 2025-11-04 03:32:23,841 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:23,871 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:23,871 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:32:25,795 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:25,821 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:25,821 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:32:28,479 basehttp 13274 13170143232 "GET /en/hr/schedules/ HTTP/1.1" 200 110132 +WARNING 2025-11-04 03:32:28,550 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:28,648 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:28,648 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:32:28,690 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:32:30,051 basehttp 13274 6131003392 "GET /en/hr/schedules/cf7163b9-672c-44f1-b48f-b39d8a24b6dc/ HTTP/1.1" 200 42059 +WARNING 2025-11-04 03:32:30,116 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:30,159 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:30,160 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 03:32:30,190 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 03:32:34,224 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:34,237 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:34,237 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:32:36,665 basehttp 13274 13170143232 "GET /en/hr/schedules/grid/ HTTP/1.1" 200 169175 +WARNING 2025-11-04 03:32:36,726 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:36,754 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:36,757 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:32:36,795 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:32:46,902 basehttp 13274 6131003392 "GET /en/hr/schedules/5fc6f152-1f90-48b1-a47f-aeb0c94396b9/ HTTP/1.1" 200 42062 +WARNING 2025-11-04 03:32:46,982 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:47,046 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:47,046 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:32:47,072 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 03:32:48,790 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:48,816 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:48,816 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:32:49,040 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:49,065 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:49,065 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:32:49,291 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:49,378 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:49,378 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:32:51,391 basehttp 13274 13170143232 "GET /en/hr/holidays/ HTTP/1.1" 200 45160 +WARNING 2025-11-04 03:32:51,462 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:51,504 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:51,505 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 03:32:51,551 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:32:52,926 basehttp 13274 6131003392 "GET /en/hr/holidays/bc5a9ca0-d477-416a-899e-6f826c037558/ HTTP/1.1" 200 41826 +WARNING 2025-11-04 03:32:52,995 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:53,047 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:53,047 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16833 +INFO 2025-11-04 03:32:53,073 basehttp 13274 13170143232 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 03:32:56,662 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:56,701 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:56,701 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:32:58,059 basehttp 13274 13170143232 "GET /en/hr/holidays/create/ HTTP/1.1" 200 41429 +WARNING 2025-11-04 03:32:58,114 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:32:58,260 log 13274 13170143232 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:32:58,260 basehttp 13274 13170143232 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:32:58,278 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 03:33:00,782 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:33:00,816 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:33:00,816 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:33:01,242 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:33:01,281 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:33:01,281 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:33:07,051 basehttp 13274 6131003392 "GET /en/finance/packages/ HTTP/1.1" 200 49786 +WARNING 2025-11-04 03:33:07,119 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:33:07,195 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:33:07,195 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:33:07,221 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:33:10,451 basehttp 13274 6147829760 "GET /en/finance/packages/7b83fae1-71b3-4360-b10f-54955d640db1/update/ HTTP/1.1" 200 70186 +INFO 2025-11-04 03:33:10,463 basehttp 13274 6147829760 "GET /static/plugins/select2/css/select2.min.css HTTP/1.1" 200 16263 +INFO 2025-11-04 03:33:10,465 basehttp 13274 6147829760 "GET /static/plugins/select2/dist/js/select2.min.js HTTP/1.1" 200 70851 +WARNING 2025-11-04 03:33:10,525 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:33:10,531 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:33:10,531 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:33:10,586 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:33:19,807 basehttp 13274 6131003392 "GET /en/finance/packages/ HTTP/1.1" 200 49786 +WARNING 2025-11-04 03:33:19,876 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:33:19,927 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:33:19,928 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:33:19,970 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:33:32,827 basehttp 13274 6147829760 "GET /en/dashboard/ HTTP/1.1" 200 66846 +WARNING 2025-11-04 03:33:32,916 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:33:32,967 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:33:32,967 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:33:33,000 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:33:37,258 basehttp 13274 6131003392 "GET /en/finance/invoices/create/ HTTP/1.1" 200 73058 +WARNING 2025-11-04 03:33:37,328 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:33:37,341 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:33:37,341 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:33:37,408 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:34:07,426 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:34:07,649 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=35f506fa53b445c4a63b00094408fdcd HTTP/1.1" 200 9549 +INFO 2025-11-04 03:34:37,395 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:34:37,619 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=78658cf1d4284cf98d57ed86bf96cea5 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:35:07,412 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:35:07,629 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=ce549b2685c242f1880aa41a58d04d0d HTTP/1.1" 200 9547 +INFO 2025-11-04 03:35:37,418 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:35:37,645 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=9c06cb70126b441195d55058be89a18f HTTP/1.1" 200 9547 +INFO 2025-11-04 03:36:07,415 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:36:07,635 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=f60d9e59ead44bbf99e6dcf0c3ffcb14 HTTP/1.1" 200 9547 +WARNING 2025-11-04 03:36:12,315 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:36:12,343 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:36:12,343 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:36:13,584 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:36:13,613 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:36:13,614 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:36:18,764 basehttp 13274 6147829760 "GET /en/finance/packages/create/ HTTP/1.1" 200 59823 +WARNING 2025-11-04 03:36:18,833 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:36:18,920 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:36:18,920 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:36:18,941 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +WARNING 2025-11-04 03:36:21,025 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:36:21,055 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:36:21,055 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +WARNING 2025-11-04 03:36:21,779 basehttp 13274 6147829760 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:36:21,837 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:36:21,837 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:36:24,472 basehttp 13274 6131003392 "GET /en/finance/packages/7b83fae1-71b3-4360-b10f-54955d640db1/update/ HTTP/1.1" 200 70218 +WARNING 2025-11-04 03:36:24,540 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:36:24,571 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:36:24,574 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:36:24,575 basehttp 13274 6131003392 - Broken pipe from ('127.0.0.1', 51214) +INFO 2025-11-04 03:36:24,615 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:36:54,593 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:36:54,814 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=30ae6248d52940d3aa02aed288a65cce HTTP/1.1" 200 9547 +INFO 2025-11-04 03:37:24,612 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:37:24,826 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=db5359834c0e45d592436db230336284 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:37:54,626 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:37:54,855 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=a567dadabf104e9d8def79ea42f4df44 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:38:24,594 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:38:24,824 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=4b85b6d46310446fadaeb7d429754908 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:38:54,687 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:38:54,900 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=78dd93b3f8764f66a386bba6feb70c9f HTTP/1.1" 200 9548 +INFO 2025-11-04 03:39:24,681 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:39:24,908 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=c1a31eaa61c1405db57d86985c8e0f58 HTTP/1.1" 200 9548 +INFO 2025-11-04 03:39:54,614 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:39:54,827 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=2c0910c8f0de44bc9f9471c0d353dd4d HTTP/1.1" 200 9547 +INFO 2025-11-04 03:40:24,612 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:40:24,842 basehttp 13274 6147829760 "GET /__debug__/history_sidebar/?request_id=bd710e6d2f55406b8b0079e210709af5 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:40:54,585 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:40:54,811 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=bab8c8d4589941689a8f91c4c78617d2 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:41:08,522 basehttp 13274 6131003392 "GET /en/finance/packages/ HTTP/1.1" 200 49784 +WARNING 2025-11-04 03:41:08,582 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:41:08,711 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:41:08,711 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:41:08,752 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:41:11,695 basehttp 13274 6147829760 "GET /en/finance/packages/create/ HTTP/1.1" 200 59822 +WARNING 2025-11-04 03:41:11,762 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:41:11,792 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:41:11,794 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:41:11,833 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:41:14,283 basehttp 13274 6131003392 "GET /en/dashboard/ HTTP/1.1" 200 66848 +WARNING 2025-11-04 03:41:14,350 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:41:14,441 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:41:14,441 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:41:14,465 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:41:20,553 basehttp 13274 6147829760 "GET /en/finance/invoices/create/ HTTP/1.1" 200 73059 +WARNING 2025-11-04 03:41:20,623 basehttp 13274 6164656128 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:41:20,629 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:41:20,629 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16832 +INFO 2025-11-04 03:41:20,685 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:41:50,709 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:41:50,937 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e9247649c15843ad9b40f3f097162b73 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:42:20,728 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:42:20,954 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=aa19fbb6ebf24676b229865912a17c83 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:42:50,709 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:42:50,938 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8781032ac41f4051be748d426f263d8a HTTP/1.1" 200 9547 +INFO 2025-11-04 03:43:20,713 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:43:20,938 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=04e0a413d49f45b2a4fe9dc4e904f203 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:43:50,709 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:43:50,926 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4082c484107c4be9a756f78dea9d1989 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:44:20,718 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:44:20,946 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b9d6454547064892ac3e87db7a783ba7 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:44:50,687 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:44:50,911 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=135dd7a7972e40f89929aad6d2bacc3b HTTP/1.1" 200 9547 +INFO 2025-11-04 03:45:20,702 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:45:20,937 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f9ebf417562e4c2aa71db68ab26bea6b HTTP/1.1" 200 9547 +INFO 2025-11-04 03:45:21,051 basehttp 13274 6131003392 "GET /en/finance/invoices/ HTTP/1.1" 200 76877 +WARNING 2025-11-04 03:45:21,124 basehttp 13274 13170143232 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:45:21,278 log 13274 6131003392 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:45:21,278 basehttp 13274 6131003392 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:45:21,285 basehttp 13274 6147829760 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +INFO 2025-11-04 03:45:21,298 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:45:28,620 basehttp 13274 6164656128 "GET /en/finance/invoices/462f1f5d-e473-47e9-8dc5-932a527e8d47/ HTTP/1.1" 200 48366 +WARNING 2025-11-04 03:45:28,681 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:45:28,780 log 13274 6164656128 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:45:28,781 basehttp 13274 6164656128 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:45:28,831 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:45:35,293 basehttp 13274 6147829760 "GET /en/dashboard/ HTTP/1.1" 200 66848 +WARNING 2025-11-04 03:45:35,360 basehttp 13274 6131003392 "GET /static/plugins/toastr/toastr.js.map HTTP/1.1" 404 2011 +WARNING 2025-11-04 03:45:35,493 log 13274 6147829760 Not Found: /.well-known/appspecific/com.chrome.devtools.json +WARNING 2025-11-04 03:45:35,493 basehttp 13274 6147829760 "GET /.well-known/appspecific/com.chrome.devtools.json HTTP/1.1" 404 16834 +INFO 2025-11-04 03:45:35,514 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:46:05,442 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:46:05,672 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=e6461f9043904f0cad59bcf7af70cc0f HTTP/1.1" 200 9547 +INFO 2025-11-04 03:46:35,429 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:46:35,655 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=9102f1adb21148bc8cb84e7c04780310 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:47:05,446 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:47:05,683 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=9dae54a9b0634c36b5aebdcf69c755dd HTTP/1.1" 200 9547 +INFO 2025-11-04 03:47:35,461 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:47:35,690 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=404f572102ac41dfa4f9e452f2969cbc HTTP/1.1" 200 9549 +INFO 2025-11-04 03:48:05,428 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:48:05,655 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=c0bbf5118b00472cb06069ff00618c91 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:48:35,442 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:48:35,656 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=80c3fad86c7a4abdbe8963a1533a049c HTTP/1.1" 200 9547 +INFO 2025-11-04 03:49:05,442 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:49:05,671 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=a33f3519758e4d419ca725c842636956 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:49:35,469 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:49:35,691 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=70c24ba9fedc439f88b67892fe1f4951 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:50:05,466 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:50:05,695 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=1b66526a4e34485db21af6140d0eeab0 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:50:35,433 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:50:35,661 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=cdf5052950444bb6abceafae6cb23cf7 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:51:05,448 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:51:05,679 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=0efa25e1ed7f4893a39f917ea3e0296e HTTP/1.1" 200 9547 +INFO 2025-11-04 03:51:30,836 basehttp 13274 6164656128 "GET /en/patients/create/ HTTP/1.1" 200 50195 +INFO 2025-11-04 03:51:30,847 basehttp 13274 6164656128 "GET /static/plugins/select2/dist/css/select2.min.css HTTP/1.1" 200 14966 +INFO 2025-11-04 03:51:30,848 basehttp 13274 6131003392 "GET /static/plugins/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css HTTP/1.1" 200 15733 +INFO 2025-11-04 03:51:30,848 basehttp 13274 6147829760 "GET /static/plugins/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js HTTP/1.1" 200 33871 +INFO 2025-11-04 03:51:30,927 basehttp 13274 6147829760 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:51:35,278 basehttp 13274 6147829760 "GET /en/patients/ HTTP/1.1" 200 97260 +WARNING 2025-11-04 03:51:35,295 basehttp 13274 6131003392 "GET /static/plugins/datatables/datatables.min.js HTTP/1.1" 404 2035 +WARNING 2025-11-04 03:51:35,295 basehttp 13274 6147829760 "GET /static/plugins/datatables/datatables.min.css HTTP/1.1" 404 2038 +INFO 2025-11-04 03:51:35,378 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:52:05,412 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:52:05,641 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=386a4da53ee24c6a953771c72c03cb7c HTTP/1.1" 200 9547 +INFO 2025-11-04 03:52:35,430 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:52:35,658 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=860acf1ee0d14615951a57c4316848d4 HTTP/1.1" 200 9549 +INFO 2025-11-04 03:53:05,434 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:53:05,657 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=290b9ecd766b4875acc3a5e993b17bac HTTP/1.1" 200 9549 +INFO 2025-11-04 03:53:35,412 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:53:35,638 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=18fc17b7b7b04d708d4fa91967d3c89b HTTP/1.1" 200 9547 +INFO 2025-11-04 03:54:05,394 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:54:05,621 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=0fa8709a5c4949708dcbe2244916275c HTTP/1.1" 200 9547 +INFO 2025-11-04 03:54:35,410 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:54:35,640 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=89aa7aad0ce540efaee538846bf2fdf3 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:55:05,432 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:55:05,660 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=54010c1dd96c4e80a3f12c260c65354b HTTP/1.1" 200 9549 +INFO 2025-11-04 03:55:35,419 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:55:35,645 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=09b7e09f41214c37a7effbb33b206398 HTTP/1.1" 200 9548 +INFO 2025-11-04 03:56:05,411 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:56:05,642 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=9fcdf012e2c9449295ea3a29be3c1146 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:56:35,405 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:56:35,635 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=2781f90335d44b1dbf2f71844498bc58 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:57:05,417 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:57:05,631 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=001ceded1c4c496d843ce19f24d8a085 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:57:35,433 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:57:35,660 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=8e81681ffe8f4133a77c9af26e813f9b HTTP/1.1" 200 9549 +INFO 2025-11-04 03:58:05,427 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:58:05,654 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=a256d33a9abf4f8c9fa215b9049279b1 HTTP/1.1" 200 9547 +INFO 2025-11-04 03:58:35,487 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:58:35,714 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=b5938faab4b04f9ba08fb7a0fba89904 HTTP/1.1" 200 9548 +INFO 2025-11-04 03:59:05,491 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:59:05,704 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=745b0143032c482db40c8df7c2c28520 HTTP/1.1" 200 9548 +INFO 2025-11-04 03:59:35,422 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 03:59:35,636 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=147c89f146054a6290395d5f5f02ebab HTTP/1.1" 200 9547 +INFO 2025-11-04 04:00:00,005 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 04:00:00,005 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 01:00:00.005576+00:00'} +INFO 2025-11-04 04:00:00,009 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 04:00:00,010 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 01:00:00.010203+00:00'} +INFO 2025-11-04 04:00:05,487 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:00:05,708 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=1c90838e2a504920830d7090d05c0dc1 HTTP/1.1" 200 9548 +INFO 2025-11-04 04:00:35,506 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:00:35,733 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=1981d5c7171748c5a14cf4a38e01376d HTTP/1.1" 200 9549 +INFO 2025-11-04 04:01:05,427 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:01:05,649 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=64b63c5b9e03482183948d9a985e239c HTTP/1.1" 200 9549 +INFO 2025-11-04 04:01:20,900 basehttp 13274 6164656128 "GET /en/patients/7881e7b7-25ff-465a-8547-42a956c9f948/ HTTP/1.1" 200 64670 +INFO 2025-11-04 04:01:21,076 basehttp 13274 6164656128 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +INFO 2025-11-04 04:01:21,096 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:01:25,146 basehttp 13274 6131003392 "GET /en/appointments/4d8b2f43-3bc1-4e4e-8b4b-97171e63068f/ HTTP/1.1" 200 53652 +INFO 2025-11-04 04:01:25,236 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:01:55,333 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:01:55,557 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5acc87de39664bda80c411e22b0d185e HTTP/1.1" 200 9548 +INFO 2025-11-04 04:02:25,286 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:02:25,504 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a32650c696e94401a06090aa5d6a3760 HTTP/1.1" 200 9550 +INFO 2025-11-04 04:02:55,293 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:02:55,519 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=70cc52d4898841c6829ccf0c1991d96d HTTP/1.1" 200 9549 +INFO 2025-11-04 04:03:25,257 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:03:25,485 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fd02348e20ef487fbccc851513d833d5 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:03:55,269 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:03:55,484 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e34376685a944693a692e11c65a58dc6 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:04:25,268 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:04:25,496 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4607d4e0556c447087bcc64e21dee5a4 HTTP/1.1" 200 9548 +INFO 2025-11-04 04:04:55,241 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:04:55,469 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c4a471fbe6b9496a82f518a7ba10d35b HTTP/1.1" 200 9547 +INFO 2025-11-04 04:05:25,266 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:05:25,494 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=940b49d70de442648fa3968ac5d68164 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:05:55,287 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:05:55,514 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=feec055bff0c4117b62f97820dcb74fc HTTP/1.1" 200 9549 +INFO 2025-11-04 04:06:25,275 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:06:25,498 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=846c0800631c4f16b271411291b294d8 HTTP/1.1" 200 9548 +INFO 2025-11-04 04:06:55,252 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:06:55,477 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fb1be68d80f6447bbe7151781f2782b9 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:07:25,330 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:07:25,557 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=13f6460ecbdb40b9a41c21e8d5ae04fa HTTP/1.1" 200 9548 +INFO 2025-11-04 04:07:55,284 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:07:55,510 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1235caece8a144458e16dff2a76d1b08 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:08:25,295 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:08:25,522 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cf6a0811c6ff45169ddd66146ebd1cab HTTP/1.1" 200 9547 +INFO 2025-11-04 04:08:55,352 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:08:55,577 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6e1e943815a845b6b4b4b918d5d2cf8f HTTP/1.1" 200 9548 +INFO 2025-11-04 04:09:25,354 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:09:25,580 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8a6f1d657da6487a996a1665fdc289bf HTTP/1.1" 200 9548 +INFO 2025-11-04 04:09:55,830 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:09:56,684 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=56a21829068d4f52bdb7cceccd4f467f HTTP/1.1" 200 9548 +INFO 2025-11-04 04:10:25,766 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:10:26,690 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2f8835dc58274b51a3daae546ed89ac8 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:13:41,601 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:13:42,529 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c64bf2d0fb464e6b9b965e0a67fb59b3 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:16:39,445 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:16:40,377 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6ea58c0d50ec4ebc8d3116ca94d7b96f HTTP/1.1" 200 9547 +INFO 2025-11-04 04:17:40,445 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:17:41,373 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=008f8cbc72c84e26bca7ea2a653c17c7 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:18:41,446 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:18:42,380 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=bf58e06a15da418b8bc55b099871ae1d HTTP/1.1" 200 9547 +INFO 2025-11-04 04:26:48,734 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:26:49,650 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c310ce9efb204e6983d3ebd360a1c818 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:27:49,797 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:27:50,645 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5f008a0a07fa4dcebff66d96920bca96 HTTP/1.1" 200 9548 +INFO 2025-11-04 04:28:50,802 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:28:51,647 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6da7ca765ad4436985340c5c665b7730 HTTP/1.1" 200 9548 +INFO 2025-11-04 04:29:51,782 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:29:52,640 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d98ae2359a684f6ab5b9f5384a2859c5 HTTP/1.1" 200 9548 +INFO 2025-11-04 04:30:00,015 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 04:30:00,015 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 01:30:00.015891+00:00'} +INFO 2025-11-04 04:30:00,023 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 04:30:00,023 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 01:30:00.023283+00:00'} +INFO 2025-11-04 04:30:52,729 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:30:53,658 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6f15a5ab25e24510a5ba1d3d66d55d43 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:31:53,722 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:31:54,656 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ba20d35debf44fd5b6b71d72b88f8339 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:32:54,710 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:32:55,642 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b08986393f3f42cf842bb6becfe134fa HTTP/1.1" 200 9547 +INFO 2025-11-04 04:33:55,732 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:33:56,658 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d4588c6519184735a968bc5a73064e05 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:34:56,726 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:34:57,660 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b14e96251cbd4b618de073e5405e9a2c HTTP/1.1" 200 9547 +INFO 2025-11-04 04:35:57,730 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:35:58,655 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f0ba6c0b422a4582a2a01ae24c86e021 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:36:58,714 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:36:59,643 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e35adcd30dfb4bfb940df72820529d56 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:37:59,730 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:38:00,645 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a934e4b474144f7c8fcb5159f2ebbc31 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:39:00,714 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:39:01,658 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=0faa74a5760c437c8f9f5812ec3cb58e HTTP/1.1" 200 9547 +INFO 2025-11-04 04:40:01,725 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:40:02,657 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=18119f461ac441dc905170f8c9bf9432 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:41:02,708 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:41:03,645 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6814f35037d445c0b5db7c343f503c83 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:42:02,742 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:42:03,662 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=317e347a2414476da9b35b61361308c5 HTTP/1.1" 200 9548 +INFO 2025-11-04 04:43:02,745 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:43:03,665 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4192ab6322704482bfd07b474a2e5928 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:44:02,738 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:44:03,666 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a6f18e8a38684b8a80e68091f8968e55 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:45:02,737 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:45:03,667 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7f216c1078f24b71b9c346b2b819180d HTTP/1.1" 200 9547 +INFO 2025-11-04 04:46:02,762 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:46:03,668 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=608f5f4058c743b8a8d93e0010ce85a6 HTTP/1.1" 200 9549 +INFO 2025-11-04 04:47:02,734 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:47:03,654 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6898d4f37c3c477b8c9b3c41b13932bc HTTP/1.1" 200 9547 +INFO 2025-11-04 04:48:02,711 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:48:03,666 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5623e420c9494709bb228c18de7b3129 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:49:02,744 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:49:03,667 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=465998f3fd524644895e63b31778b20d HTTP/1.1" 200 9547 +INFO 2025-11-04 04:50:02,735 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:50:03,668 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f8c7d82c84d54a3980abd0c0f543bf20 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:51:02,741 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:51:03,667 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=eb488e9cece6455c956baba500eb5f38 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:52:02,741 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:52:03,667 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3e11dc213f1a4f9cb01688921fefb589 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:53:02,742 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:53:03,654 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=411797a32ce24acb88eec66d21a05bd4 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:54:02,727 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:54:03,659 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=606eb2fe94f545039eb8c5a6a2570e91 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:55:02,785 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:55:03,667 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4227de0549a74b01af6a2d51ffde4fe5 HTTP/1.1" 200 9549 +INFO 2025-11-04 04:56:02,735 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:56:03,668 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d93144dc3f544964a3204bc11eb02cb0 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:57:02,742 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:57:03,668 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a74abb7e09ef4beab50020323a770522 HTTP/1.1" 200 9547 +INFO 2025-11-04 04:58:02,746 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:58:03,670 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=540ce3b89adb4ec9ae106b83be3cf52d HTTP/1.1" 200 9547 +INFO 2025-11-04 04:59:02,744 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 04:59:03,661 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=0fb1b94bcb1f4228bc6a57bb6a9511c9 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:00:00,019 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 05:00:00,020 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 02:00:00.020085+00:00'} +INFO 2025-11-04 05:00:00,026 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 05:00:00,026 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 02:00:00.026474+00:00'} +INFO 2025-11-04 05:00:02,710 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:00:03,672 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7becf1e720fa43e9a665f509dadf97d4 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:01:02,751 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:01:03,671 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=46e46f0aaa56400f931e2dfec56e64b0 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:02:02,745 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:02:03,672 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8efe543e8df54438935788d5b4f381b1 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:03:02,770 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:03:03,673 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=075404d02a1e4f499ca72a32b54dda29 HTTP/1.1" 200 9549 +INFO 2025-11-04 05:04:02,738 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:04:03,673 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=011809efa0d24adfbcd0997f44637010 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:05:02,745 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:05:03,671 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d813700e2069455d8be2d11e9b192846 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:06:02,749 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:06:03,659 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e8a076b19a5e46708000e04ec5861a56 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:07:02,769 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:07:03,674 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8618b2fd8297446cbbabc992c09075c7 HTTP/1.1" 200 9549 +INFO 2025-11-04 05:08:02,750 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:08:03,671 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b60a107534234c53ab06d3406d9edff5 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:09:02,745 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:09:03,674 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=82cce23b017549188a9b931deb41e43e HTTP/1.1" 200 9547 +INFO 2025-11-04 05:10:02,748 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:10:03,673 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8bfd8a21d6ba4f7e8cd0e52dd10097b2 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:11:02,763 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:11:03,674 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cdd01a4d7a904eb38144e509ffa98050 HTTP/1.1" 200 9549 +INFO 2025-11-04 05:12:02,747 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:12:03,674 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=582cdfd98d47464ba54898f22687dc61 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:13:02,767 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:13:03,677 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=12ca089d4957474b8739bbce78f37b54 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:14:02,737 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:14:03,677 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6aa1343de72f4167b79b035dfec39f63 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:15:02,784 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:15:03,685 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1e757f26256340c2985e0efeae022863 HTTP/1.1" 200 9549 +INFO 2025-11-04 05:16:02,770 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:16:03,689 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d4d0ffc77db34f5da47a29b7d45099dc HTTP/1.1" 200 9547 +INFO 2025-11-04 05:17:02,766 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:17:03,694 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c14d8e11bb864550b2239a049cde0d8b HTTP/1.1" 200 9547 +INFO 2025-11-04 05:18:02,776 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:18:03,696 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3fc0b915fba442af927fb42d841c1020 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:19:02,786 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:19:03,692 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1db59eea3ca645fd9918ddd183612a53 HTTP/1.1" 200 9549 +INFO 2025-11-04 05:20:02,756 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:20:03,681 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e1e12b867f114d17b6bdcbc06f2abd8f HTTP/1.1" 200 9547 +INFO 2025-11-04 05:21:02,761 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:21:03,696 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8bb7975e57674fb991792a9eb7d6e51e HTTP/1.1" 200 9548 +INFO 2025-11-04 05:22:02,771 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:22:03,698 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=bb5c8c1a02c14fefa2f4f1fbc43b1e40 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:23:02,772 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:23:03,702 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=0707030441fb491ab285178710dde045 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:24:02,774 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:24:03,696 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=38b3296a3f4a4c8b93a7dd5acef2fae5 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:25:02,769 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:25:03,698 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c5ca3965839b488aa3c0d9d7d77e4727 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:26:02,766 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:26:03,699 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f17ef92c16094a8dab092e794227d5e4 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:27:02,777 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:27:03,685 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e1bd997b638545d7bb4f97cd540f18b2 HTTP/1.1" 200 9547 +INFO 2025-11-04 05:28:02,775 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:28:03,698 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4ec0581e3a944cd1809eda8f8e36d678 HTTP/1.1" 200 9548 +INFO 2025-11-04 05:31:13,002 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 05:31:13,002 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 02:31:13.002662+00:00'} +INFO 2025-11-04 05:31:13,010 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 05:31:13,010 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 02:31:13.010789+00:00'} +INFO 2025-11-04 05:31:38,437 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:31:39,325 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=dd83db8bc9d24c70b1a4b93d5785746b HTTP/1.1" 200 9550 +INFO 2025-11-04 05:43:16,768 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 05:43:17,692 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6b7039b8b39343a88be2519e81099607 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:00:06,266 tasks 70301 8426217792 Lab results sync started +INFO 2025-11-04 06:00:06,266 tasks 70301 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 03:00:06.266946+00:00'} +INFO 2025-11-04 06:00:06,271 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 06:00:06,271 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 03:00:06.271894+00:00'} +INFO 2025-11-04 06:00:31,339 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:00:32,252 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7705c1f1ec994535b475ad57e28d4b55 HTTP/1.1" 200 9547 +ERROR 2025-11-04 06:00:36,167 tasks 70308 8426217792 Appointment f67274b1-47d1-4541-b68e-9d13b7dac738 not found +INFO 2025-11-04 06:11:02,819 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:11:03,737 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=07bba2d2f2af458ea8aa98813442d6ba HTTP/1.1" 200 9547 +INFO 2025-11-04 06:28:25,034 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:28:25,960 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=61a0a340f641468daae1f6067b76ab66 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:29:25,006 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:29:25,945 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=681f6c4964364ba4ba2ac3cbcc725fac HTTP/1.1" 200 9547 +INFO 2025-11-04 06:30:00,006 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 06:30:00,007 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 03:30:00.007233+00:00'} +INFO 2025-11-04 06:30:00,013 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 06:30:00,013 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 03:30:00.013508+00:00'} +INFO 2025-11-04 06:30:25,028 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:30:25,953 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=45810149727546a3bc03233ce98fe517 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:31:25,026 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:31:25,954 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6c6a48dfe19a447886c499152bbd9b99 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:32:25,056 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:32:25,951 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ea22e0156e2e40a6b17391ac24d4d65e HTTP/1.1" 200 9549 +INFO 2025-11-04 06:33:25,013 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:33:25,939 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7d51216f9b004da09b3e3ed3c9cdaaca HTTP/1.1" 200 9547 +INFO 2025-11-04 06:34:25,045 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:34:25,942 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=94496382a6394a4c846fe18065a3cc2c HTTP/1.1" 200 9549 +INFO 2025-11-04 06:35:25,019 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:35:25,941 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1e380b942c8a42ce94243d451f31a4a3 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:36:25,022 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:36:25,937 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=0245e7e9d7644fa191a4320a71753bb9 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:37:24,997 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:37:25,943 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=83933ed6f8974e9094c85dd330d3cf80 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:38:25,026 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:38:25,947 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b53047b1e16f4052a24f9924088de77c HTTP/1.1" 200 9547 +INFO 2025-11-04 06:39:25,025 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:39:25,947 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=58eea897517a4acf8e85d7bf206d4f7e HTTP/1.1" 200 9547 +INFO 2025-11-04 06:40:25,035 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:40:25,948 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a0bb71c8bfbb4da29e61547d33fb29b1 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:41:25,045 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:41:25,937 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e1a2d35f58fa436285ab4ad5ac2afd7a HTTP/1.1" 200 9549 +INFO 2025-11-04 06:42:25,026 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:42:25,934 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ae8a5cde7e38465d9acdc0a89444db8a HTTP/1.1" 200 9547 +INFO 2025-11-04 06:43:25,021 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:43:25,944 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5af6ebc7a73a4c4c9a6e8e263e0b91b5 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:44:25,040 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:44:25,930 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=df1c6e818a7b45109de63781b6107bac HTTP/1.1" 200 9549 +INFO 2025-11-04 06:45:25,013 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:45:25,939 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f7ec1d548e324b7fa126e9eaa22ed1e2 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:46:24,998 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:46:25,925 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3c886a80d88e460ab92a71aed8f829f7 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:47:25,013 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:47:25,932 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9394260613124479a7daf3446e5a18b1 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:48:25,016 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:48:25,939 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=eac45fb89f854342815284809496be7c HTTP/1.1" 200 9547 +INFO 2025-11-04 06:49:25,034 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:49:25,942 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7f51e75e4ee1422d9753e9ff567520cd HTTP/1.1" 200 9549 +INFO 2025-11-04 06:50:24,998 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:50:25,925 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=62dafbd664f2476b9a3412a80d4baaef HTTP/1.1" 200 9547 +INFO 2025-11-04 06:51:25,008 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:51:25,937 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f9aa8ca9048f4bfcb97ac3fae60a3792 HTTP/1.1" 200 9548 +INFO 2025-11-04 06:52:25,011 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:52:25,938 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e48a46ad5d61495da13b3dfd87c5b650 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:53:25,048 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:53:25,941 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=dc07a23c3f1c4f5aa6cdea677e494b9f HTTP/1.1" 200 9549 +INFO 2025-11-04 06:54:25,004 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:54:25,934 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=41836899955b43cd8873b12cc3b9bebf HTTP/1.1" 200 9547 +ERROR 2025-11-04 06:55:22,270 tasks 70308 8426217792 Appointment f67274b1-47d1-4541-b68e-9d13b7dac738 not found +INFO 2025-11-04 06:55:25,005 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:55:25,935 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c9a7f38f25d9482b98cda825af3a2d48 HTTP/1.1" 200 9547 +ERROR 2025-11-04 06:55:53,690 tasks 70308 8426217792 Appointment 5297c8a9-a539-48b0-890a-a057f3517761 not found +INFO 2025-11-04 06:56:25,006 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:56:25,933 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a8a7e02b35af4a3db1d63513fc88510d HTTP/1.1" 200 9547 +INFO 2025-11-04 06:57:25,032 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:57:25,935 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7b182fc81c05436d82187df585aca2ca HTTP/1.1" 200 9549 +INFO 2025-11-04 06:58:25,008 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:58:25,926 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=0fb31459e766479c8687c80849d05787 HTTP/1.1" 200 9547 +INFO 2025-11-04 06:59:25,008 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 06:59:25,930 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d09f29a4d7e84007a79c2c452f67381e HTTP/1.1" 200 9547 +INFO 2025-11-04 07:00:00,010 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 07:00:00,011 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 04:00:00.011351+00:00'} +INFO 2025-11-04 07:00:00,018 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 07:00:00,018 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 04:00:00.018754+00:00'} +INFO 2025-11-04 07:00:24,984 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:00:25,909 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=20689bea7ee64727b94bfe1a44d29661 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:01:25,003 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:01:25,908 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9fcf7bb109174e32a2cc1de09eed6a64 HTTP/1.1" 200 9549 +INFO 2025-11-04 07:02:24,997 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:02:25,910 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c96789fcad5b44a9b6f063080022004b HTTP/1.1" 200 9549 +INFO 2025-11-04 07:03:24,978 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:03:25,906 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=761a4ffd67bf4502bb03f07dd730fa9a HTTP/1.1" 200 9547 +INFO 2025-11-04 07:04:24,981 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:04:25,905 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ea67e2f169f442208a6b8f430b7a02dd HTTP/1.1" 200 9547 +INFO 2025-11-04 07:05:24,976 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:05:25,892 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=273948a2f80b44eab284d50c9884d2e8 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:06:24,975 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:06:25,903 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cae7291f3e694619818b27a2834b77ba HTTP/1.1" 200 9547 +ERROR 2025-11-04 07:06:40,235 tasks 70308 8426217792 Appointment f67274b1-47d1-4541-b68e-9d13b7dac738 not found +ERROR 2025-11-04 07:06:40,328 tasks 70308 8426217792 Appointment f67274b1-47d1-4541-b68e-9d13b7dac738 not found +ERROR 2025-11-04 07:06:40,339 tasks 70308 8426217792 Appointment f67274b1-47d1-4541-b68e-9d13b7dac738 not found +ERROR 2025-11-04 07:06:40,403 tasks 70308 8426217792 Appointment f67274b1-47d1-4541-b68e-9d13b7dac738 not found +INFO 2025-11-04 07:07:24,995 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:07:25,899 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cda016a3fcbc456a94a9f8781b78773f HTTP/1.1" 200 9549 +INFO 2025-11-04 07:08:24,978 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:08:25,899 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d5d7e835274b4f92b12d66a73e80063a HTTP/1.1" 200 9547 +INFO 2025-11-04 07:09:24,963 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:09:25,889 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c5795d84a2de4e6696b1eb2fdf90f718 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:10:24,971 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:10:25,898 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f6497c036104481c899ef6b1af538149 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:11:24,965 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:11:25,935 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cf77eaaec257445eaa87571e7c77b33c HTTP/1.1" 200 9547 +INFO 2025-11-04 07:12:24,966 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:12:25,898 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=df775c895b6045e980c475d1cfbe9e5e HTTP/1.1" 200 9547 +INFO 2025-11-04 07:13:24,969 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:13:25,899 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1018a3be29a94447a3a6388f804daa0a HTTP/1.1" 200 9547 +INFO 2025-11-04 07:14:24,965 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:14:25,897 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=768cb808282844bf9b64cdcc4fc12c9b HTTP/1.1" 200 9547 +INFO 2025-11-04 07:15:25,096 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:15:26,015 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d43d086914c149539a8d9eb6f6d74383 HTTP/1.1" 200 9548 +INFO 2025-11-04 07:16:25,073 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:16:26,001 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e46e379833eb4b3fa4010768bc8702cb HTTP/1.1" 200 9547 +INFO 2025-11-04 07:17:25,085 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:17:26,013 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=0d9db61f51054d2482b329a437e62563 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:18:25,088 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:18:26,014 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1c23197d98224cfd9d1edd408ca8b71f HTTP/1.1" 200 9547 +INFO 2025-11-04 07:19:25,086 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:19:26,014 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=48a53db00e544b94aa5b67abce636e6f HTTP/1.1" 200 9548 +INFO 2025-11-04 07:20:25,083 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:20:26,002 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7eb28067267a4ebf841a6461ff305430 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:21:25,112 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:21:26,017 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f922c226d921407bb3277c7ebb22b2ac HTTP/1.1" 200 9549 +INFO 2025-11-04 07:22:25,064 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:22:26,014 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d9c6dc702ec143d3b9cfb5cc18516fb7 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:23:25,066 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:23:25,999 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5b8cb75fdb964869b144a7dc6b79531c HTTP/1.1" 200 9547 +INFO 2025-11-04 07:24:25,082 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:24:26,014 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d33911458a70441d9fecf7eec5c69286 HTTP/1.1" 200 9547 +ERROR 2025-11-04 07:25:22,360 tasks 70308 8426217792 Appointment 5297c8a9-a539-48b0-890a-a057f3517761 not found +INFO 2025-11-04 07:25:25,100 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:25:26,013 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c8593002d5e54104a091209e2c38d97d HTTP/1.1" 200 9547 +INFO 2025-11-04 07:26:25,082 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:26:26,015 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7d7f3f8823844b42889cdd4405bb83e6 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:27:25,076 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:27:25,999 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7a8e944451eb470095b27b1ec6098b96 HTTP/1.1" 200 9547 +INFO 2025-11-04 07:28:25,090 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:28:26,014 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8ba1de6c5baf4328a572083e7aadf01c HTTP/1.1" 200 9547 +INFO 2025-11-04 07:44:31,459 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 07:44:31,460 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 04:44:31.459985+00:00'} +INFO 2025-11-04 07:44:31,463 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 07:44:31,463 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 04:44:31.463538+00:00'} +INFO 2025-11-04 07:45:10,218 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 07:45:11,140 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=15882a388e724d34b57abd27aa2a8f58 HTTP/1.1" 200 9547 +INFO 2025-11-04 08:00:46,262 tasks 70308 8426217792 Scheduled 0 appointment reminders +INFO 2025-11-04 08:00:46,264 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 08:00:46,264 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 05:00:46.264201+00:00'} +INFO 2025-11-04 08:00:46,268 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 08:00:46,268 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 05:00:46.268183+00:00'} +ERROR 2025-11-04 08:00:59,781 tasks 70308 8426217792 Appointment 403e353a-3b90-4d86-b142-da0e64820bff not found +INFO 2025-11-04 08:01:24,758 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 08:01:25,681 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3bc956c9852e48f4af26535b5b03467c HTTP/1.1" 200 9547 +INFO 2025-11-04 08:12:16,050 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 08:12:16,943 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=0fe907ba6136409dbdb74a49c006aacd HTTP/1.1" 200 9549 +ERROR 2025-11-04 08:12:22,058 tasks 70301 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +INFO 2025-11-04 08:12:22,059 tasks 70308 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 08:12:22,070 tasks 70308 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +ERROR 2025-11-04 08:12:22,117 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 08:28:19,391 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 08:28:20,318 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a824076d49c047fb9364612a8fc8cf4e HTTP/1.1" 200 9547 +ERROR 2025-11-04 08:28:25,511 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 08:44:13,752 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 08:44:13,753 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 05:44:13.753147+00:00'} +INFO 2025-11-04 08:44:13,756 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 08:44:13,756 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 05:44:13.756514+00:00'} +INFO 2025-11-04 08:44:41,495 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 08:44:42,416 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a23ff5399b4a488d86d1d763c39ea5dd HTTP/1.1" 200 9547 +ERROR 2025-11-04 08:44:47,619 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 08:47:08,019 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 08:47:08,941 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5369dc9ad335416fa60e2549aab4e3a0 HTTP/1.1" 200 9547 +ERROR 2025-11-04 08:47:14,153 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 09:04:13,154 tasks 70301 8426217792 Lab results sync started +INFO 2025-11-04 09:04:13,154 tasks 70301 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 06:04:13.154250+00:00'} +INFO 2025-11-04 09:04:13,158 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 09:04:13,158 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 06:04:13.158696+00:00'} +INFO 2025-11-04 09:04:45,480 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 09:04:46,427 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=92612eb35f3941d586263a02db1f357f HTTP/1.1" 200 9547 +INFO 2025-11-04 09:13:08,028 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 09:13:08,930 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=58e06e0f210440348c9816dffcefd191 HTTP/1.1" 200 9549 +ERROR 2025-11-04 09:13:14,184 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +ERROR 2025-11-04 09:13:14,252 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +ERROR 2025-11-04 09:13:23,261 tasks 70308 8426217792 Appointment 5297c8a9-a539-48b0-890a-a057f3517761 not found +ERROR 2025-11-04 09:13:23,356 tasks 70308 8426217792 Appointment 5297c8a9-a539-48b0-890a-a057f3517761 not found +ERROR 2025-11-04 09:13:23,367 tasks 70308 8426217792 Appointment 5297c8a9-a539-48b0-890a-a057f3517761 not found +ERROR 2025-11-04 09:13:23,427 tasks 70308 8426217792 Appointment 5297c8a9-a539-48b0-890a-a057f3517761 not found +INFO 2025-11-04 09:29:47,135 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 09:29:48,053 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=bdef3800d0534f3b8fef67d4f2c8026f HTTP/1.1" 200 9547 +INFO 2025-11-04 09:30:00,008 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 09:30:00,008 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 06:30:00.008380+00:00'} +INFO 2025-11-04 09:30:00,013 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 09:30:00,013 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 06:30:00.013473+00:00'} +INFO 2025-11-04 09:46:58,922 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 09:46:59,838 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5053a964b1d4479088c22644416a6177 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:03:18,703 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 10:03:18,703 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 07:03:18.703811+00:00'} +INFO 2025-11-04 10:03:18,709 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 10:03:18,709 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 07:03:18.709218+00:00'} +INFO 2025-11-04 10:03:40,360 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:03:41,284 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ef0bd3f54b504e68bffaa8d65b40e5e4 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:13:56,945 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:13:57,875 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=82fb5fdc4ce64167a5622db4b15cf50c HTTP/1.1" 200 9547 +INFO 2025-11-04 10:29:56,398 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:29:57,299 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a9795024707d4b7ea6467c833eaa17ff HTTP/1.1" 200 9549 +INFO 2025-11-04 10:30:00,005 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 10:30:00,005 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 07:30:00.005823+00:00'} +INFO 2025-11-04 10:30:00,009 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 10:30:00,009 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 07:30:00.009306+00:00'} +ERROR 2025-11-04 10:30:02,783 tasks 70308 8426217792 Appointment 567e7bff-6a15-48f0-a4ff-b4cdfd9fb901 not found +ERROR 2025-11-04 10:30:02,791 tasks 70308 8426217792 Appointment a02f31c4-52ee-44a4-a8ac-4f798911b8e4 not found +ERROR 2025-11-04 10:30:02,794 tasks 70301 8426217792 Appointment 021245a7-f63c-422d-965e-82b32b1fe86a not found +INFO 2025-11-04 10:42:41,745 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:42:42,662 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2e945762e3254b8cb0d6cfce5fbffe56 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:43:41,742 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:43:42,659 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=72d41a15284943268521ea809cfbf0e7 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:44:41,734 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:44:42,663 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d8715e2f5f7347a292b94a0bdb9e8beb HTTP/1.1" 200 9547 +INFO 2025-11-04 10:45:41,751 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:45:42,673 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=427a8141487440319c445df6ce65da88 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:46:41,750 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:46:42,665 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6607f26c05e04a2883679995f4792564 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:47:41,766 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:47:42,673 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8c6cfd017b2149e8905ad497bfb02272 HTTP/1.1" 200 9549 +INFO 2025-11-04 10:48:41,777 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:48:42,672 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=678ac1dea7464108b7a6a9c2557ca23c HTTP/1.1" 200 9549 +ERROR 2025-11-04 10:49:25,743 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +INFO 2025-11-04 10:49:41,749 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:49:42,672 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5b5d6c9086194a319401b03c731d6fba HTTP/1.1" 200 9548 +INFO 2025-11-04 10:50:41,738 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:50:42,669 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=65f01c3f41264adf8a232025788cbe5e HTTP/1.1" 200 9548 +INFO 2025-11-04 10:51:41,705 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:51:42,657 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b5a088ac4fe644e38f7808c0e97f7721 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:52:41,740 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:52:42,669 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=035cd9431fc84bcc993cf441a3063113 HTTP/1.1" 200 9547 +ERROR 2025-11-04 10:53:33,753 tasks 70308 8426217792 Appointment a02f31c4-52ee-44a4-a8ac-4f798911b8e4 not found +ERROR 2025-11-04 10:53:33,753 tasks 70301 8426217792 Appointment 021245a7-f63c-422d-965e-82b32b1fe86a not found +INFO 2025-11-04 10:53:41,757 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:53:42,660 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8529b94135aa4dfaa461b3a2e09b22d5 HTTP/1.1" 200 9549 +INFO 2025-11-04 10:54:41,768 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:54:42,669 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=13c895a1d50e49958eda9fd468e2cf6a HTTP/1.1" 200 9549 +INFO 2025-11-04 10:55:41,729 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:55:42,652 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ce4783b9965e4969840e69094fa3188b HTTP/1.1" 200 9547 +ERROR 2025-11-04 10:56:10,431 tasks 70308 8426217792 Appointment 403e353a-3b90-4d86-b142-da0e64820bff not found +INFO 2025-11-04 10:56:41,715 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:56:42,664 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9bc31adab19a4f2d8ce8813d0bce4a50 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:57:41,738 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:57:42,664 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=864b578b7fac43879a8e02ef1d983ef8 HTTP/1.1" 200 9547 +INFO 2025-11-04 10:58:41,754 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:58:42,654 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=571d1c22fbe1441eb204bac72a0b9b25 HTTP/1.1" 200 9550 +INFO 2025-11-04 10:59:41,730 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 10:59:42,650 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a7c2f3d364f34f2d8d7f2fe77fd36adc HTTP/1.1" 200 9547 +INFO 2025-11-04 11:00:00,017 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 11:00:00,017 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 08:00:00.017641+00:00'} +INFO 2025-11-04 11:00:00,023 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 11:00:00,023 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 08:00:00.023826+00:00'} +ERROR 2025-11-04 11:00:16,769 tasks 70301 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +ERROR 2025-11-04 11:00:16,771 tasks 70309 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +INFO 2025-11-04 11:00:16,772 tasks 70308 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 11:00:16,779 tasks 70301 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:00:41,761 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:00:42,689 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=42268443b8ff45bdbd2af40f458865ea HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:01:16,835 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:01:41,773 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:01:42,704 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2ee0ebbe62f64d0fbd72d92ef479bb5a HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:02:16,854 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:02:41,772 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:02:42,688 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=357cb279bd854545b71cd529bd5f1a5a HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:03:16,871 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:03:41,793 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:03:42,702 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f5e759be55c94d7d8d388178045ee3fe HTTP/1.1" 200 9549 +INFO 2025-11-04 11:04:41,763 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:04:42,702 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=54c5b159feab47a481b07edd75c4eb7b HTTP/1.1" 200 9547 +INFO 2025-11-04 11:05:41,746 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:05:42,700 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=173a9edc51d5467b93a20ef59f4e90bc HTTP/1.1" 200 9547 +INFO 2025-11-04 11:06:41,770 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:06:42,692 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c076089aabc245feb24bfabcc1843e36 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:07:41,800 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:07:42,696 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d913104e2f45406b86602803fc18d7dd HTTP/1.1" 200 9549 +INFO 2025-11-04 11:08:41,788 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:08:42,700 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=87213bda69234a38a0285116774a7aea HTTP/1.1" 200 9548 +INFO 2025-11-04 11:09:41,757 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:09:42,690 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=dcb4626130f7466d9958f5a217612e70 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:10:41,766 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:10:42,696 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=56ab23367e9d497a83c6dc7fa2762a69 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:11:41,770 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:11:42,695 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cde14b69338a4384800854d1b703ac15 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:12:41,764 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:12:42,685 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=80346c9ce154417ab82dc837099cd8b5 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:13:41,769 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:13:42,699 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e0a0bf90ef0f4c0bb6cadbff464e8f66 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:14:41,770 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:14:42,697 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3d2ac94e9de2479ba8b243ddaa23659d HTTP/1.1" 200 9547 +INFO 2025-11-04 11:15:41,750 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:15:42,702 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a0ed69ad2f2c4a058aa68297e024a788 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:16:41,690 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:16:42,617 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fcb947fc059a4063aa8bd2e794cf280f HTTP/1.1" 200 9547 +INFO 2025-11-04 11:17:41,709 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:17:42,618 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=a4b302912ae24369bd793ad2a6e855c8 HTTP/1.1" 200 9549 +INFO 2025-11-04 11:18:41,653 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:18:42,607 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=71ecf0b4b5b64d6e90803ca5fd38f113 HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:19:25,685 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +INFO 2025-11-04 11:19:41,688 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:19:42,613 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b3b55f8669174c58bd743bda83b9ec24 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:20:41,672 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:20:42,612 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=247b499611cd484f884f8cd66344f4b4 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:21:41,714 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:21:42,607 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=95fa99631a0f47e886f1f6703b7df3c9 HTTP/1.1" 200 9549 +INFO 2025-11-04 11:22:41,683 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:22:42,598 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=68bd4092bdd64ffe8529c1b87883ce3a HTTP/1.1" 200 9547 +INFO 2025-11-04 11:23:41,681 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:23:42,611 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c3dce5249b3f4396beccca9a1ec9ac11 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:24:41,673 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:24:42,606 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4dcd61109c1a4823856f760ec3841f20 HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:25:38,951 tasks 70308 8426217792 Appointment 403e353a-3b90-4d86-b142-da0e64820bff not found +INFO 2025-11-04 11:25:41,657 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:25:42,602 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=167c93eee6da4ba0a22e5d37ae390405 HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:26:10,371 tasks 70308 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +ERROR 2025-11-04 11:26:10,372 tasks 70301 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +INFO 2025-11-04 11:26:10,394 tasks 70309 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 11:26:10,399 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:26:41,696 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:26:42,609 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fc4c4c29511e40c6b11165161924fccc HTTP/1.1" 200 9549 +ERROR 2025-11-04 11:27:10,420 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:27:41,675 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:27:42,607 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=520c3145abd14aa68240e3354de825b7 HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:28:10,431 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:28:41,677 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:28:42,600 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fddeaa4615c04770a34f8614d6537be7 HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:29:10,446 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 11:29:41,656 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:29:42,584 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=04ddc5ddb8834a01b54a1649908b1db4 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:30:00,005 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 11:30:00,005 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 08:30:00.005273+00:00'} +INFO 2025-11-04 11:30:00,009 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 11:30:00,009 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 08:30:00.009579+00:00'} +ERROR 2025-11-04 11:30:16,710 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +INFO 2025-11-04 11:30:41,691 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:30:42,599 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3b52e73808484b5c95c48bd8d59cd78e HTTP/1.1" 200 9549 +INFO 2025-11-04 11:31:41,724 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:31:42,651 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=dbe8b7db3d994197b77d3b4d3e1d9b8b HTTP/1.1" 200 9547 +INFO 2025-11-04 11:32:41,711 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:32:42,635 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ceaae1fc7ada4f8d8473755f93ee18be HTTP/1.1" 200 9547 +INFO 2025-11-04 11:33:41,722 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:33:42,647 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=53a5647dc93a4850901bb9ac7d617197 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:34:41,721 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:34:42,650 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=080e4ce313ed45568791321094e6330e HTTP/1.1" 200 9547 +INFO 2025-11-04 11:35:41,700 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:35:42,649 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=92fde997eb7c47bfa476f086d9f181cb HTTP/1.1" 200 9547 +INFO 2025-11-04 11:36:41,713 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:36:42,639 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=31ce2c4dfd544fffbe3e9615de157bfd HTTP/1.1" 200 9547 +ERROR 2025-11-04 11:36:56,974 tasks 70308 8426217792 Appointment 403e353a-3b90-4d86-b142-da0e64820bff not found +ERROR 2025-11-04 11:36:57,072 tasks 70308 8426217792 Appointment 403e353a-3b90-4d86-b142-da0e64820bff not found +ERROR 2025-11-04 11:36:57,082 tasks 70308 8426217792 Appointment 403e353a-3b90-4d86-b142-da0e64820bff not found +ERROR 2025-11-04 11:36:57,143 tasks 70308 8426217792 Appointment 403e353a-3b90-4d86-b142-da0e64820bff not found +INFO 2025-11-04 11:37:41,716 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:37:42,645 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8bdd81e0bb824ebfa2e8525ac2f47851 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:38:41,723 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:38:42,647 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=152d93f97cd449f1ab59619e704e8695 HTTP/1.1" 200 9547 +INFO 2025-11-04 11:39:41,697 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:39:42,632 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9d2095992c2e44b4bdf3dee77264383e HTTP/1.1" 200 9547 +INFO 2025-11-04 11:40:41,736 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:40:42,646 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=254a1feea99140999479118947207a7e HTTP/1.1" 200 9549 +INFO 2025-11-04 11:41:41,720 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:41:42,637 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3e00509365b24fff8ac19ee5c49179af HTTP/1.1" 200 9547 +INFO 2025-11-04 11:42:41,711 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:42:42,649 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6260af3ffdcd40e1a37298cc85357a3b HTTP/1.1" 200 9548 +INFO 2025-11-04 11:43:50,906 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:43:51,844 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=194af5feefe24783bd650dd040e100dc HTTP/1.1" 200 9548 +INFO 2025-11-04 11:44:58,553 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 11:44:59,472 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=871efb3beb394a878ceb9d56efd3a493 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:02:14,824 tasks 70301 8426217792 Lab results sync started +INFO 2025-11-04 12:02:14,825 tasks 70301 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 09:02:14.825044+00:00'} +INFO 2025-11-04 12:02:14,829 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 12:02:14,829 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 09:02:14.829433+00:00'} +INFO 2025-11-04 12:02:48,202 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:02:49,143 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ee8a6b085abf46cfbc45822f7be0c25d HTTP/1.1" 200 9547 +INFO 2025-11-04 12:03:48,228 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:03:49,155 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=15ac81cffe0c4901bd25e4c223c12639 HTTP/1.1" 200 9548 +INFO 2025-11-04 12:04:48,200 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:04:49,155 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=37ced610b5c44783ad7556013d93ae37 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:05:48,202 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:05:49,153 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1380ef909bc44f5ba69dc4bba480b6bc HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:06:32,230 tasks 70308 8426217792 Appointment a02f31c4-52ee-44a4-a8ac-4f798911b8e4 not found +ERROR 2025-11-04 12:06:32,230 tasks 70301 8426217792 Appointment 021245a7-f63c-422d-965e-82b32b1fe86a not found +INFO 2025-11-04 12:06:48,227 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:06:49,141 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4dbdac05e16a4fa3b3ebdc32c64c3898 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:07:48,251 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:07:49,153 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=56c1478bc97941e29483e590299b8755 HTTP/1.1" 200 9549 +INFO 2025-11-04 12:08:48,222 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:08:49,140 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e01ebddc6e4f4471a29d62a331acfa2f HTTP/1.1" 200 9547 +INFO 2025-11-04 12:09:48,219 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:09:49,143 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f098e8c4c55f4efa95dad07e60863d1f HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:10:40,232 tasks 70308 8426217792 Appointment 567e7bff-6a15-48f0-a4ff-b4cdfd9fb901 not found +INFO 2025-11-04 12:10:48,227 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:10:49,153 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d0bc7b3ee1024b5bbf45b0e6b68e1712 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:11:48,225 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:11:49,144 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1c8a653bd0a34c579fea6694ca04f9bc HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:12:45,497 tasks 70308 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +ERROR 2025-11-04 12:12:45,497 tasks 70309 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +INFO 2025-11-04 12:12:45,504 tasks 70301 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 12:12:45,506 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:12:48,228 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:12:49,148 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2dd54cbac6ce41198068edd77837a287 HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:13:16,918 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +ERROR 2025-11-04 12:13:45,522 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:13:48,237 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:13:49,147 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ffca7fdd8304416385176d09378eee29 HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:14:45,540 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:14:48,225 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:14:49,155 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=d14dad1260a646ef866cd051283fd0ba HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:15:45,545 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:15:48,208 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:15:49,150 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=cf84c0e477ff430fbe97c9155caf1bfc HTTP/1.1" 200 9547 +INFO 2025-11-04 12:16:48,192 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:16:49,143 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8d8b25f7fdf34069b96bc2c3a21ffb8b HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:17:23,264 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +INFO 2025-11-04 12:17:48,219 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:17:49,141 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=445bbef0235d455dad79d54cd9d1ed5d HTTP/1.1" 200 9547 +INFO 2025-11-04 12:18:48,137 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:18:49,066 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=86408aa90fce43578ccc7706537bfa99 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:19:48,140 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:19:49,060 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4fb182bce2b14ac384ab3ccf39a03b98 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:20:48,153 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:20:49,063 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b4e8adf3d6a54edea3d5c4f5db5200ac HTTP/1.1" 200 9549 +INFO 2025-11-04 12:21:48,134 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:21:49,062 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=bb83a03d685d4e8fbe687ae22bad6eac HTTP/1.1" 200 9547 +INFO 2025-11-04 12:22:48,130 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:22:49,049 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9c1474c5de9b4600808bf93aab2b38b0 HTTP/1.1" 200 9548 +INFO 2025-11-04 12:23:48,129 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:23:49,060 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ba72e0f7a86b4f7182339f116a08c262 HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:24:03,385 tasks 70308 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +ERROR 2025-11-04 12:24:03,385 tasks 70309 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +INFO 2025-11-04 12:24:03,387 tasks 70301 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 12:24:03,393 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:24:03,476 tasks 70301 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +ERROR 2025-11-04 12:24:03,476 tasks 70308 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +INFO 2025-11-04 12:24:03,478 tasks 70309 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 12:24:03,482 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:24:03,491 tasks 70308 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +ERROR 2025-11-04 12:24:03,491 tasks 70301 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +INFO 2025-11-04 12:24:03,492 tasks 70309 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 12:24:03,496 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:24:03,552 tasks 70301 8426217792 Appointment da52a889-dc8c-48f6-87c7-10bc7e440fd3 not found +ERROR 2025-11-04 12:24:03,552 tasks 70309 8426217792 Appointment 15f63ca9-a132-4072-bee2-3797e989a4c0 not found +INFO 2025-11-04 12:24:03,554 tasks 70308 8426217792 Reminder sent for appointment f2443d00-7fe6-4eb4-94ba-c30743ad8bbf +ERROR 2025-11-04 12:24:03,558 tasks 70301 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:24:48,152 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:24:49,059 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c3da281747954cd79063dfc898c32cc7 HTTP/1.1" 200 9549 +ERROR 2025-11-04 12:25:03,409 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:25:03,488 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:25:03,501 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:25:03,565 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:25:48,136 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:25:49,047 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c4e017cce984488fbf400988f524d859 HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:26:03,423 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:26:03,494 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:26:03,505 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:26:03,572 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:26:48,124 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:26:49,057 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=8c65df1121814eadbb61832c6cafe64d HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:27:03,438 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:27:03,500 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:27:03,510 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +ERROR 2025-11-04 12:27:03,579 tasks 70308 8426217792 Failed to send multi-channel notification: User matching query does not exist. +INFO 2025-11-04 12:27:48,130 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:27:49,056 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=146ea47101434b059c0858d2f88873e8 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:28:48,144 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:28:49,056 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=61f24631a2d84c7687abc174688dea1f HTTP/1.1" 200 9549 +INFO 2025-11-04 12:29:48,129 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:29:49,053 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=dc15cc33e9c04844b01bc0aa9e32a3ee HTTP/1.1" 200 9547 +INFO 2025-11-04 12:30:00,016 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 12:30:00,017 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 09:30:00.017098+00:00'} +INFO 2025-11-04 12:30:00,023 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 12:30:00,023 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 09:30:00.023793+00:00'} +INFO 2025-11-04 12:30:48,123 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:30:49,054 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=01ebc68ce2df4fbf9c0f00cb07fff6f9 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:31:48,151 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:31:49,052 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=10c1c9ab6ce04d4e9bfe14a21fc402e1 HTTP/1.1" 200 9549 +INFO 2025-11-04 12:32:48,139 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:32:49,050 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f0457bcca4374d68aa2fd04a4507803b HTTP/1.1" 200 9549 +INFO 2025-11-04 12:33:48,179 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:33:49,120 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4795fac32a62411b860b75d81d25100d HTTP/1.1" 200 9547 +INFO 2025-11-04 12:34:48,213 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:34:49,131 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7487b842f47a440f9c75cb34a67a3a74 HTTP/1.1" 200 9549 +INFO 2025-11-04 12:35:48,175 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:35:49,129 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f7ff723c71484473aad644149d8c0e19 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:36:48,197 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:36:49,122 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=63b01ccdf3f9483d8ed75316ef320d78 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:37:48,207 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:37:49,124 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b423380389a046949f75e64ed9cc04f4 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:38:48,181 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:38:49,118 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=155b0b736c854d2ab8eacc8574ca8eb4 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:39:48,210 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:39:49,130 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ed1dc31921734f95bc581630c1e1b59c HTTP/1.1" 200 9547 +INFO 2025-11-04 12:40:48,202 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:40:49,131 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2af16ccca40543aca8157c311f1bbe8a HTTP/1.1" 200 9547 +INFO 2025-11-04 12:41:48,203 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:41:49,129 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5432e16715fe4948b8992ec1226367fc HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:42:45,479 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +INFO 2025-11-04 12:42:48,202 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:42:49,127 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=bbb62ce09be2481fa115998f4ba3fba5 HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:43:16,895 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +INFO 2025-11-04 12:43:48,207 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:43:49,131 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fc79f95eb95a4ec4ac501f4195b2a8d1 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:44:48,229 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:44:49,129 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=842f1dc693a042e5bf10aef37bdd12d5 HTTP/1.1" 200 9549 +INFO 2025-11-04 12:45:48,207 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:45:49,120 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=875c364012fd48648d0bc7e38f215203 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:46:48,177 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:46:49,117 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9751f2074e16483e9e5b22e1dab91ca6 HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:47:23,232 tasks 70308 8426217792 Appointment a02f31c4-52ee-44a4-a8ac-4f798911b8e4 not found +ERROR 2025-11-04 12:47:23,233 tasks 70301 8426217792 Appointment 021245a7-f63c-422d-965e-82b32b1fe86a not found +INFO 2025-11-04 12:47:48,179 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:47:49,119 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=99ad9a2595ed48c8acd10a1d0bdb7ab2 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:48:48,145 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:48:49,065 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=f6741bc5235d494382ba01c8b52f337d HTTP/1.1" 200 9548 +INFO 2025-11-04 12:49:48,111 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:49:49,051 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5ccfa8ed4a9d40bf8187550ffdb3fc6b HTTP/1.1" 200 9547 +INFO 2025-11-04 12:50:48,121 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:50:49,050 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7f3e4a389f304b6cab25b12b272ef7de HTTP/1.1" 200 9547 +INFO 2025-11-04 12:51:48,132 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:51:49,051 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=7bc8cb4ada654663a91fe75047952000 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:52:48,138 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:52:49,060 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6a4f1fb0c58f47cf9c237bc45f4d347d HTTP/1.1" 200 9547 +INFO 2025-11-04 12:53:48,138 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:53:49,059 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5b9a44602ca14ada8dc218b01922cbe4 HTTP/1.1" 200 9547 +ERROR 2025-11-04 12:54:03,391 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +ERROR 2025-11-04 12:54:03,482 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +ERROR 2025-11-04 12:54:03,493 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +ERROR 2025-11-04 12:54:03,557 tasks 70308 8426217792 Appointment 723a746a-7715-4565-82ec-6856327e10a7 not found +INFO 2025-11-04 12:54:48,130 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:54:49,051 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9fc27db6999b442c8fb017fc2ad57c76 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:55:48,114 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:55:49,060 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=703e9bbd0e59408597115f77879682ee HTTP/1.1" 200 9547 +INFO 2025-11-04 12:56:48,123 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:56:49,057 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=9e55680385f740f198d3cbdcda46962f HTTP/1.1" 200 9547 +INFO 2025-11-04 12:57:48,141 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:57:49,057 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=6349d78fedbe49dca7f1d96b87fa863e HTTP/1.1" 200 9549 +INFO 2025-11-04 12:58:48,100 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:58:49,055 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4e6922b746df44c0a330c2d6ee7d4773 HTTP/1.1" 200 9547 +INFO 2025-11-04 12:59:48,099 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 12:59:49,044 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=24ba6d470e624087aaab24f96285a2ce HTTP/1.1" 200 9547 +INFO 2025-11-04 13:00:00,017 tasks 70301 8426217792 Radiology results sync started +ERROR 2025-11-04 13:00:00,018 tasks 70308 8426217792 Appointment 9c915ebb-578a-44fb-bdce-8a8dab121b16 not found +INFO 2025-11-04 13:00:00,018 tasks 70301 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 10:00:00.018861+00:00'} +INFO 2025-11-04 13:00:00,025 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 13:00:00,025 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 10:00:00.025204+00:00'} +INFO 2025-11-04 13:00:48,119 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:00:49,055 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=48b886057f7b4ae383f0dcac9d412c58 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:01:48,118 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:01:49,050 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=881ee76f12834b40906f09726272922c HTTP/1.1" 200 9547 +INFO 2025-11-04 13:02:48,151 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:02:49,053 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4d0ba7fea3e54118af55c76fe28a06d1 HTTP/1.1" 200 9549 +INFO 2025-11-04 13:05:13,817 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:05:14,718 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=e71a8ad7dae24ea4bda15449a3250eef HTTP/1.1" 200 9549 +INFO 2025-11-04 13:06:13,781 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:06:14,704 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4537298131c34f14a8915ca29df14742 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:07:13,799 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:07:14,719 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3a0e5ee353444743b74735fd4ae9124a HTTP/1.1" 200 9547 +ERROR 2025-11-04 13:07:57,780 tasks 70308 8426217792 Appointment 567e7bff-6a15-48f0-a4ff-b4cdfd9fb901 not found +INFO 2025-11-04 13:08:13,791 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:08:14,716 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=b712e0649a234d9ebc88a7d6c4f7862f HTTP/1.1" 200 9547 +INFO 2025-11-04 13:09:13,759 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:09:14,708 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=29a2034789f64065a5ee91933e9ad83e HTTP/1.1" 200 9547 +INFO 2025-11-04 13:10:13,792 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:10:14,717 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=09c8309167bf4a86ba7bdea207110f01 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:11:13,793 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:11:14,716 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=76dbc3c45508440c9146e59ca0b4dd86 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:12:13,771 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:12:14,700 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=94adbabfc09d4cb8a232d1ba5f5d61c5 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:13:13,788 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:13:14,709 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=18bc6a4abc7643b5807f0d09b484b17e HTTP/1.1" 200 9547 +ERROR 2025-11-04 13:14:11,059 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +INFO 2025-11-04 13:14:13,802 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:14:14,714 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=87768e6596ab4b5f9da4d731d205a23a HTTP/1.1" 200 9549 +ERROR 2025-11-04 13:14:42,476 tasks 70301 8426217792 Appointment 021245a7-f63c-422d-965e-82b32b1fe86a not found +ERROR 2025-11-04 13:14:42,476 tasks 70308 8426217792 Appointment a02f31c4-52ee-44a4-a8ac-4f798911b8e4 not found +INFO 2025-11-04 13:15:13,789 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:15:14,704 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=44ea1f3a8f8a4cb6886d7582fdb0550f HTTP/1.1" 200 9547 +INFO 2025-11-04 13:16:13,787 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:16:14,711 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=5e8d3858f20b40f18a6d9703cd993c0f HTTP/1.1" 200 9547 +INFO 2025-11-04 13:17:13,788 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:17:14,707 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2e51b74138a946cdafd50ce59b87128b HTTP/1.1" 200 9547 +INFO 2025-11-04 13:18:13,759 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:18:14,696 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=65155e01e0a74a07aaf868c0dad44fe4 HTTP/1.1" 200 9547 +ERROR 2025-11-04 13:18:32,117 tasks 70308 8426217792 Appointment 9c915ebb-578a-44fb-bdce-8a8dab121b16 not found +INFO 2025-11-04 13:19:13,780 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:19:14,705 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=1acef6e69ddc459aa7fc5f0c6d964ad5 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:19:41,717 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:19:41,939 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=fa582e4a78004e19bb4e63aa926ccc9f HTTP/1.1" 200 9548 +INFO 2025-11-04 13:19:54,497 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:19:54,723 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=01c9430b570e411e89b5019600d0a216 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:20:24,515 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:20:24,740 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=77deb5a8aa234158a9958a1e49e61995 HTTP/1.1" 200 9549 +INFO 2025-11-04 13:20:54,505 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:20:54,723 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=4f31d5e3c89a41859dfcf18c41f59977 HTTP/1.1" 200 9548 +INFO 2025-11-04 13:21:24,491 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:21:24,714 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=230d06776a754c15846ac490c754ae25 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:21:54,503 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:21:54,730 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=05386dad6fda4c34b755af856e342dd0 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:22:24,508 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:22:24,728 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=ded4404fb6724811af021dd6ca0445eb HTTP/1.1" 200 9549 +INFO 2025-11-04 13:22:54,527 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:22:54,747 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2a803c9171de44808aa9afcc9f54b9b9 HTTP/1.1" 200 9549 +INFO 2025-11-04 13:23:24,488 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:23:24,713 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=640ea19ce375449f9185c853f6d3342a HTTP/1.1" 200 9547 +INFO 2025-11-04 13:23:54,495 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:23:54,710 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=3d6e0d3123b94093b953d39bc2dd39ed HTTP/1.1" 200 9547 +INFO 2025-11-04 13:24:24,497 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:24:24,726 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=eb3d4ce8538646e09a5b7b026956d329 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:24:54,466 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:24:54,688 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=2f252d36dba64669a275ed3f9906a3b9 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:25:24,502 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:25:24,727 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=35ceb37bdd044eb6b41ebac85222160d HTTP/1.1" 200 9547 +ERROR 2025-11-04 13:25:29,121 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +ERROR 2025-11-04 13:25:29,217 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +ERROR 2025-11-04 13:25:29,233 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +ERROR 2025-11-04 13:25:29,293 tasks 70308 8426217792 Appointment 9af2aff6-125c-4584-840a-6f8c8315a790 not found +INFO 2025-11-04 13:25:54,515 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:25:54,739 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=efa03793606549f985684c111ccc18cf HTTP/1.1" 200 9549 +INFO 2025-11-04 13:26:24,491 basehttp 13274 6131003392 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:26:24,711 basehttp 13274 6131003392 "GET /__debug__/history_sidebar/?request_id=c83a6f6eebd548a18679b556ccdf8cf5 HTTP/1.1" 200 9548 +INFO 2025-11-04 13:26:45,542 basehttp 13274 6131003392 "GET /en/dashboard/ HTTP/1.1" 200 66849 +INFO 2025-11-04 13:26:45,733 basehttp 13274 6131003392 "GET /media/tenant_settings/2025/11/04/Agdar-Logo.png HTTP/1.1" 304 0 +INFO 2025-11-04 13:26:45,734 basehttp 13274 6147829760 "GET /media/profile_pictures/Father_-d_HcbHEbL.png HTTP/1.1" 304 0 +INFO 2025-11-04 13:26:45,746 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:27:15,708 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:27:15,935 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=6611cbda07ea444aba13c8c3b8c0c2a6 HTTP/1.1" 200 9549 +INFO 2025-11-04 13:27:29,576 basehttp 13274 6164656128 "GET /en/consent-templates/ HTTP/1.1" 200 53155 +INFO 2025-11-04 13:27:29,670 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:27:56,116 basehttp 13274 6164656128 "GET /en/notifications/api/dropdown/ HTTP/1.1" 200 1005 +INFO 2025-11-04 13:27:56,345 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=01d351b531644a7b808aafe170d88882 HTTP/1.1" 200 9540 +INFO 2025-11-04 13:27:59,703 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:27:59,916 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=16c016b0703d45d489b15f57812611c5 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:28:06,095 basehttp 13274 6164656128 "GET /en/settings/ HTTP/1.1" 200 55535 +INFO 2025-11-04 13:28:06,191 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:28:08,844 basehttp 13274 6164656128 "GET /en/settings/ZATCA/ HTTP/1.1" 200 50619 +INFO 2025-11-04 13:28:08,932 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:28:31,860 basehttp 13274 6164656128 "GET /en/settings/ HTTP/1.1" 200 55535 +INFO 2025-11-04 13:28:31,949 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:29:06,748 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:29:06,976 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=4016b24c8efb47c4af1e3a0dc81f0581 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:29:36,736 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:29:36,965 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=0028bb003f8544efb8c5f51d28b109ee HTTP/1.1" 200 9547 +INFO 2025-11-04 13:30:00,014 tasks 70308 8426217792 Radiology results sync started +INFO 2025-11-04 13:30:00,014 tasks 70308 8426217792 Radiology results sync completed: {'status': 'success', 'new_studies': 0, 'new_reports': 0, 'errors': 0, 'timestamp': '2025-11-04 10:30:00.014749+00:00'} +INFO 2025-11-04 13:30:00,016 tasks 70308 8426217792 Lab results sync started +INFO 2025-11-04 13:30:00,017 tasks 70308 8426217792 Lab results sync completed: {'status': 'success', 'new_results': 0, 'updated_results': 0, 'errors': 0, 'timestamp': '2025-11-04 10:30:00.017018+00:00'} +INFO 2025-11-04 13:30:06,736 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:30:06,953 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=a90303ec24d1484db9b64b045d328fb6 HTTP/1.1" 200 9547 +ERROR 2025-11-04 13:30:17,519 tasks 70308 8426217792 Appointment 9c915ebb-578a-44fb-bdce-8a8dab121b16 not found +INFO 2025-11-04 13:30:36,758 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:30:36,977 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=20925ebdd791408cbf2f7e385f802fd2 HTTP/1.1" 200 9549 +INFO 2025-11-04 13:31:06,709 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:31:06,921 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=017ef13be1ab4a549507cf4cfa77eff2 HTTP/1.1" 200 9547 +ERROR 2025-11-04 13:31:25,766 tasks 70308 8426217792 Appointment 0ddbc507-5471-451e-8169-b81b42b3a780 not found +INFO 2025-11-04 13:31:36,744 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:31:36,968 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=c0591e61dff84ee7a7d5bd95a8c75a2a HTTP/1.1" 200 9548 +INFO 2025-11-04 13:32:06,732 basehttp 13274 6164656128 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:32:06,953 basehttp 13274 6164656128 "GET /__debug__/history_sidebar/?request_id=c025c1a5a64b47e3a32fa175bbf200a4 HTTP/1.1" 200 9547 +INFO 2025-11-04 13:32:16,691 autoreload 13274 8426217792 /Users/marwanalwali/AgdarCentre/AgdarCentre/settings.py changed, reloading. +INFO 2025-11-04 13:32:17,144 autoreload 9020 8426217792 Watching for file changes with StatReloader +INFO 2025-11-04 13:33:01,871 autoreload 9476 8426217792 Watching for file changes with StatReloader +INFO 2025-11-04 13:33:04,634 basehttp 9476 6161428480 "GET /en/settings/ HTTP/1.1" 200 41993 +INFO 2025-11-04 13:33:04,669 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:33:07,188 basehttp 9476 6161428480 "GET /en/dashboard/ HTTP/1.1" 200 53329 +INFO 2025-11-04 13:33:07,230 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:33:37,243 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:34:07,236 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:34:37,245 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:35:07,252 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:35:37,260 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:35:45,936 basehttp 9476 6161428480 "GET /en/dashboard/ HTTP/1.1" 200 53329 +INFO 2025-11-04 13:35:45,979 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:35:58,701 basehttp 9476 6161428480 "GET /en/patients/ HTTP/1.1" 200 83739 +WARNING 2025-11-04 13:35:58,711 basehttp 9476 6161428480 "GET /static/plugins/datatables/datatables.min.css HTTP/1.1" 404 2038 +WARNING 2025-11-04 13:35:58,712 basehttp 9476 13438578688 "GET /static/plugins/datatables/datatables.min.js HTTP/1.1" 404 2035 +INFO 2025-11-04 13:35:58,739 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:36:17,843 basehttp 9476 6161428480 "GET /en/patients/?search=1569234247&sex=&age_range=&status= HTTP/1.1" 200 2548 +INFO 2025-11-04 13:36:17,929 basehttp 9476 6161428480 "GET /en/patients/?search=1569234247&sex=&age_range=&status= HTTP/1.1" 200 2548 +INFO 2025-11-04 13:36:23,873 basehttp 9476 6161428480 "GET /en/patients/?search=&sex=&age_range=&status= HTTP/1.1" 200 53531 +INFO 2025-11-04 13:36:23,947 basehttp 9476 6161428480 "GET /en/patients/?search=&sex=&age_range=&status= HTTP/1.1" 200 53531 +INFO 2025-11-04 13:36:28,742 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:36:35,833 basehttp 9476 6161428480 "GET /en/patients/?search=000046&sex=&age_range=&status= HTTP/1.1" 200 2543 +INFO 2025-11-04 13:36:35,908 basehttp 9476 6161428480 "GET /en/patients/?search=000046&sex=&age_range=&status= HTTP/1.1" 200 2543 +INFO 2025-11-04 13:36:42,508 basehttp 9476 6161428480 "GET /en/patients/?search=&sex=&age_range=&status= HTTP/1.1" 200 53531 +INFO 2025-11-04 13:36:42,572 basehttp 9476 6161428480 "GET /en/patients/?search=&sex=&age_range=&status= HTTP/1.1" 200 53531 +INFO 2025-11-04 13:36:58,754 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:37:28,747 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:37:58,756 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:38:28,754 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:38:58,755 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:39:28,742 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:39:58,752 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:40:28,756 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:40:58,755 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:41:28,755 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:41:58,757 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:42:28,753 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:42:58,756 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:43:28,755 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:43:58,746 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +ERROR 2025-11-04 13:44:11,170 tasks 70308 8426217792 Appointment a02f31c4-52ee-44a4-a8ac-4f798911b8e4 not found +ERROR 2025-11-04 13:44:11,171 tasks 70301 8426217792 Appointment 021245a7-f63c-422d-965e-82b32b1fe86a not found +INFO 2025-11-04 13:44:15,618 basehttp 9476 6161428480 "GET /en/dashboard/ HTTP/1.1" 200 53329 +INFO 2025-11-04 13:44:15,662 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 +INFO 2025-11-04 13:44:45,675 basehttp 9476 6161428480 "GET /en/notifications/api/unread-count/ HTTP/1.1" 200 19 diff --git a/media/tenant_settings/2025/11/04/Agdar-Logo.png b/media/tenant_settings/2025/11/04/Agdar-Logo.png new file mode 100644 index 00000000..6c4ad3a6 Binary files /dev/null and b/media/tenant_settings/2025/11/04/Agdar-Logo.png differ diff --git a/medical/templates/medical/consultation_detail.html b/medical/templates/medical/consultation_detail.html index 176c38d4..bbcbb13d 100644 --- a/medical/templates/medical/consultation_detail.html +++ b/medical/templates/medical/consultation_detail.html @@ -428,7 +428,7 @@ {% trans "This consultation has not been signed yet" %}
{% if user.role == 'ADMIN' or user == consultation.provider %} - + { if (confirmed) this.submit(); });"> {% csrf_token %}
+ + + + + + + + diff --git a/templates/partial/header.html b/templates/partial/header.html index 3a4d1e97..2f0b3b1f 100644 --- a/templates/partial/header.html +++ b/templates/partial/header.html @@ -1,4 +1,4 @@ -{% load static i18n %} +{% load static i18n tenant_tags %}