Skip to content

Commit

Permalink
feat(tables): add logging to help with debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
koeaw committed Jul 1, 2024
1 parent 01f7072 commit 573d837
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apis_ontology/tables.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import logging

import django_tables2 as tables
from apis_core.apis_entities.tables import AbstractEntityTable
from django.utils.translation import gettext_lazy as _
Expand All @@ -20,6 +22,9 @@
)


logger = logging.getLogger(__name__)


class GenericEditLinkColumn(tables.Column):
linkify = {
"viewname": "apis:generic:update",
Expand Down

0 comments on commit 573d837

Please sign in to comment.