-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conditionally disable / enable logging #590
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #590 +/- ##
==========================================
+ Coverage 94.85% 94.86% +0.01%
==========================================
Files 31 31
Lines 1011 1013 +2
==========================================
+ Hits 959 961 +2
Misses 52 52 ☔ View full report in Codecov by Sentry. |
Removed trailing whitespace...
Thanks @errrken for this patch. please:
|
for more information, see https://pre-commit.ci
Yeah I was just thinking if someone for some reason used to return False
before - it will suddenly disable their logging - that’s why I reasoned it
would be breaking…
fre 24 nov. 2023 kl. 11:57 skrev Hasan Ramezani ***@***.***>:
… ***@***.**** commented on this pull request.
------------------------------
In CHANGELOG.md
<#590 (comment)>
:
> @@ -2,6 +2,9 @@
## Next Release
+#### Breaking Changes
I think it not a breaking change. as we are preparing django-auditlog for
major release 3 and it's already in beta.
⬇️ Suggested change
-#### Breaking Changes
+#### Improvements
—
Reply to this email directly, view it on GitHub
<#590 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC7QQUBSXGHYFT67ZUPDY23YGB4RZAVCNFSM6AAAAAA7YBROEGVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMYTONBXG42DOMRVGA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Hi, Thanks |
Thanks y'all, may I ask out of curiosity when we can expect it to be merged and when you expect 3.0 to be released? |
It will be released in the next beta release. |
Allright, so there will be one more beta? Any idea when that will be released? |
probably after we merged #592 |
If any receiver returns False, no logging will be made. This can be useful if logging should be conditionally enabled / disabled
Closes #589 possibly #586