From 9c4c60765e00d6014a96eca889abfc9fb394dcc6 Mon Sep 17 00:00:00 2001 From: ticvac Date: Tue, 7 Jan 2025 17:44:22 +0100 Subject: [PATCH] logger done --- mamweb/admin.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mamweb/admin.py b/mamweb/admin.py index 8a5f16af..5e7bb820 100644 --- a/mamweb/admin.py +++ b/mamweb/admin.py @@ -7,6 +7,7 @@ import locale from django.contrib import admin from django.contrib.admin import AdminSite from django.contrib.flatpages.models import FlatPage +import logging # Note: we are renaming the original Admin and Form as we import them! from django.contrib.flatpages.admin import FlatPageAdmin as FlatPageAdminOld @@ -60,7 +61,9 @@ def get_app_list(self, request, app_label=None): for app in app_list: app['models'].sort(key=lambda x: locale.strxfrm(x['name'].lower())) except OSError: - pass # locale.strxfrm nefunguje na macu... :-/ -> neprovede se řazení + # locale.strxfrm nefunguje na macu... :-/ -> neprovede se řazení + logger = logging.getLogger(__name__) + logger.error('locale.strxfrm nefunguje na macu... :-/ -> neprovede se řazení') return app_list