Skip to content

Commit

Permalink
fix(settings): disable logger for now
Browse files Browse the repository at this point in the history
to make import faster
  • Loading branch information
b1rger committed May 8, 2024
1 parent 1989842 commit 32c86cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apis_ontology/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
INSTALLED_APPS += ["apis_highlighter", "django.contrib.postgres", "apis_core.collections", "apis_core.history"]
INSTALLED_APPS.remove("apis_ontology")
INSTALLED_APPS.insert(0, "apis_ontology")
INSTALLED_APPS += ["django_action_logger"]
#INSTALLED_APPS += ["django_action_logger"]
INSTALLED_APPS += ["django_acdhch_functions"]

ROOT_URLCONF = 'apis_ontology.urls'
Expand Down
2 changes: 1 addition & 1 deletion apis_ontology/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
]

urlpatterns += staticfiles_urlpatterns()
urlpatterns += [path("logger/", include("django_action_logger.urls")),]
#urlpatterns += [path("logger/", include("django_action_logger.urls")),]
urlpatterns += [path("", include("django_acdhch_functions.urls")),]

0 comments on commit 32c86cc

Please sign in to comment.