djlogq 1.0.1__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {djlogq-1.0.1/src/djlogq.egg-info → djlogq-1.0.3}/PKG-INFO +3 -5
- {djlogq-1.0.1 → djlogq-1.0.3}/README.md +1 -3
- {djlogq-1.0.1 → djlogq-1.0.3}/pyproject.toml +2 -2
- {djlogq-1.0.1 → djlogq-1.0.3/src/djlogq.egg-info}/PKG-INFO +3 -5
- {djlogq-1.0.1 → djlogq-1.0.3}/MANIFEST.in +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/setup.cfg +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/djlogq.egg-info/SOURCES.txt +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/djlogq.egg-info/dependency_links.txt +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/djlogq.egg-info/requires.txt +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/djlogq.egg-info/top_level.txt +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/__init__.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/admin.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/apps.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/async_logger.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/management/__init__.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/management/commands/__init__.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/management/commands/clean_logs.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/middleware.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/migrations/0001_initial.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/migrations/0002_alter_logentry_function_alter_logentry_line_number_and_more.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/migrations/__init__.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/models.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/tests.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/urls.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/utils.py +0 -0
- {djlogq-1.0.1 → djlogq-1.0.3}/src/logq/views.py +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: djlogq
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.3
|
4
4
|
Summary: A reusable Django app for asynchronous, thread-safe logging with rich metadata, admin interface, and API support.
|
5
|
-
Author-email:
|
5
|
+
Author-email: mess <mesnavunawa@gmail.com>
|
6
6
|
License: MIT
|
7
7
|
Requires-Python: >=3.8
|
8
8
|
Description-Content-Type: text/markdown
|
@@ -150,9 +150,7 @@ Access the admin interface at `/admin/` to view and manage logs. Features includ
|
|
150
150
|
|
151
151
|
- Filter by level, module, timestamp, user ID
|
152
152
|
- Search by message, module, function, request ID
|
153
|
-
|
154
|
-
- Delete old logs
|
155
|
-
- Export functionality
|
153
|
+
|
156
154
|
|
157
155
|
### Management Commands
|
158
156
|
|
@@ -136,9 +136,7 @@ Access the admin interface at `/admin/` to view and manage logs. Features includ
|
|
136
136
|
|
137
137
|
- Filter by level, module, timestamp, user ID
|
138
138
|
- Search by message, module, function, request ID
|
139
|
-
|
140
|
-
- Delete old logs
|
141
|
-
- Export functionality
|
139
|
+
|
142
140
|
|
143
141
|
### Management Commands
|
144
142
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "djlogq"
|
7
|
-
version = "1.0.
|
7
|
+
version = "1.0.3"
|
8
8
|
description = "A reusable Django app for asynchronous, thread-safe logging with rich metadata, admin interface, and API support."
|
9
9
|
readme = "README.md"
|
10
10
|
authors = [
|
11
|
-
{name = "
|
11
|
+
{name = "mess", email = "mesnavunawa@gmail.com"}
|
12
12
|
]
|
13
13
|
license = {text = "MIT"}
|
14
14
|
requires-python = ">=3.8"
|
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: djlogq
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.3
|
4
4
|
Summary: A reusable Django app for asynchronous, thread-safe logging with rich metadata, admin interface, and API support.
|
5
|
-
Author-email:
|
5
|
+
Author-email: mess <mesnavunawa@gmail.com>
|
6
6
|
License: MIT
|
7
7
|
Requires-Python: >=3.8
|
8
8
|
Description-Content-Type: text/markdown
|
@@ -150,9 +150,7 @@ Access the admin interface at `/admin/` to view and manage logs. Features includ
|
|
150
150
|
|
151
151
|
- Filter by level, module, timestamp, user ID
|
152
152
|
- Search by message, module, function, request ID
|
153
|
-
|
154
|
-
- Delete old logs
|
155
|
-
- Export functionality
|
153
|
+
|
156
154
|
|
157
155
|
### Management Commands
|
158
156
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|