djlogq 1.0.2__tar.gz → 1.0.4__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.2/src/djlogq.egg-info → djlogq-1.0.4}/PKG-INFO +3 -3
- {djlogq-1.0.2 → djlogq-1.0.4}/README.md +1 -1
- {djlogq-1.0.2 → djlogq-1.0.4}/pyproject.toml +2 -2
- {djlogq-1.0.2 → djlogq-1.0.4/src/djlogq.egg-info}/PKG-INFO +3 -3
- {djlogq-1.0.2 → djlogq-1.0.4}/MANIFEST.in +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/setup.cfg +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/SOURCES.txt +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/dependency_links.txt +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/requires.txt +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/top_level.txt +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/__init__.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/admin.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/apps.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/async_logger.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/management/__init__.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/management/commands/__init__.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/management/commands/clean_logs.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/middleware.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/migrations/0001_initial.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/migrations/0002_alter_logentry_function_alter_logentry_line_number_and_more.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/migrations/__init__.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/models.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/tests.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/urls.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/utils.py +0 -0
- {djlogq-1.0.2 → djlogq-1.0.4}/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.4
|
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
|
@@ -21,7 +21,7 @@ A reusable Django app that provides asynchronous logging functionality using a s
|
|
21
21
|
- **Asynchronous Logging**: All log operations run in a separate thread
|
22
22
|
- **Thread-Safe**: Uses a queue system for thread-safe logging
|
23
23
|
- **Rich Metadata**: Captures module, function, line number, user ID, request ID, and extra data
|
24
|
-
- **Admin Interface**:
|
24
|
+
- **Admin Interface**: Django admin interface for viewing and managing logs
|
25
25
|
- **API Endpoints**: REST API for external logging
|
26
26
|
- **Middleware**: Automatic request logging with unique request IDs
|
27
27
|
- **Decorators**: Utility decorators for function logging and performance monitoring
|
@@ -7,7 +7,7 @@ A reusable Django app that provides asynchronous logging functionality using a s
|
|
7
7
|
- **Asynchronous Logging**: All log operations run in a separate thread
|
8
8
|
- **Thread-Safe**: Uses a queue system for thread-safe logging
|
9
9
|
- **Rich Metadata**: Captures module, function, line number, user ID, request ID, and extra data
|
10
|
-
- **Admin Interface**:
|
10
|
+
- **Admin Interface**: Django admin interface for viewing and managing logs
|
11
11
|
- **API Endpoints**: REST API for external logging
|
12
12
|
- **Middleware**: Automatic request logging with unique request IDs
|
13
13
|
- **Decorators**: Utility decorators for function logging and performance monitoring
|
@@ -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.4"
|
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.4
|
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
|
@@ -21,7 +21,7 @@ A reusable Django app that provides asynchronous logging functionality using a s
|
|
21
21
|
- **Asynchronous Logging**: All log operations run in a separate thread
|
22
22
|
- **Thread-Safe**: Uses a queue system for thread-safe logging
|
23
23
|
- **Rich Metadata**: Captures module, function, line number, user ID, request ID, and extra data
|
24
|
-
- **Admin Interface**:
|
24
|
+
- **Admin Interface**: Django admin interface for viewing and managing logs
|
25
25
|
- **API Endpoints**: REST API for external logging
|
26
26
|
- **Middleware**: Automatic request logging with unique request IDs
|
27
27
|
- **Decorators**: Utility decorators for function logging and performance monitoring
|
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
|