django-auditlog icon indicating copy to clipboard operation
django-auditlog copied to clipboard

A Django app that keeps a log of changes made to an object.

Results 136 django-auditlog issues
Sort by recently updated
recently updated
newest added

Currently, due to my app being an API it logs that the 'system' made the change. In each of the API calls, I'm passing a Token for authentification which corresponds...

Hi there, This fails for a **BinaryField**, the relevant code can be found in ../lib/python3.6/site-packages/auditlog/diff.py in get_field_value line 78. Since the only handled exception is **ObjectDoesNotExist**, this fails: ``` value...

bug

This commit integrates django-jsonfield-compat which aims to fix #71 . After using this branch, add ``` USE_NATIVE_JSONFIELD = True ``` to your project's settings, and then run `python manage.py migrate`....

enhancement

I tried to record the audit logs for a table existing in a separate database but the logs were not reflected in the auditlog_logentry table. Is there any way which...

Due to the volume of audit logs and integration with legacy database, I need my audit logs in a separate database. I suggest adding a LOGGING_DATABASE_NAME variable and amending the...

When building the changes JSON for a LogEntry, following relations (e.g. `ForeigKey` fields) can resutl in a significant performance penalty. This commit adds support for only logging to foreign key...

As recommended, I've added two new custom hooks. One for before the audit log is written, and one for after. This enabled use cases around performance tracing, and hopefully others...

When the user is not authenticated, the remote address is not added to the audit log, even if it is known. `auditlog.middleware.set_actor` should be set as a `pre_save` signal receiver,...

First of all this library has been so useful. It's exactly what I needed and works really well. There is only one issue. It seems to be detecting changes that...