Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
conduwuit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
🥺
conduwuit
Commits
aef77bd3
Commit
aef77bd3
authored
11 months ago
by
Jason Volk
Committed by
🥺
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
add release_log_level feature to simulate release logs in debug mode.
Signed-off-by:
Jason Volk
<
jason@zemos.net
>
parent
3140f101
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Cargo.toml
+3
-0
3 additions, 0 deletions
Cargo.toml
src/utils/debug.rs
+8
-5
8 additions, 5 deletions
src/utils/debug.rs
with
11 additions
and
5 deletions
Cargo.toml
+
3
−
0
View file @
aef77bd3
...
...
@@ -377,6 +377,9 @@ hot_reload = ["dep:hot-lib-reloader"]
hardened_malloc
=
[
"hardened_malloc-rs"
]
# developer feature useful only in debug builds.
release_log_level
=
[]
# client/server interopability hacks
#
## element has various non-spec compliant behaviour
...
...
This diff is collapsed.
Click to expand it.
src/utils/debug.rs
+
8
−
5
View file @
aef77bd3
/// Log event at given level in debug-mode (when debug-assertions are enabled).
/// In release mode it becomes DEBUG level, and possibly subject to elision.
/// In release-mode it becomes DEBUG level, and possibly subject to elision.
///
/// Release-mode can be simulated in debug-mode builds by enabling the feature
/// 'release_log_level'.
#[macro_export]
macro_rules!
debug_event
{
(
$level:expr
,
$
(
$x:tt
)
+
)
=>
{
if
cfg!
(
debug_assertions
)
{
if
cfg!
(
debug_assertions
)
&&
cfg!
(
not
(
feature
=
"release_log_level"
))
{
tracing
::
event!
(
$level
,
$
(
$x
)
+
);
}
else
{
tracing
::
debug!
(
$
(
$x
)
+
);
...
...
@@ -12,7 +15,7 @@ macro_rules! debug_event {
}
/// Log message at the ERROR level in debug-mode (when debug-assertions are
/// enabled). In release
mode it becomes DEBUG level, and possibly subject to
/// enabled). In release
-
mode it becomes DEBUG level, and possibly subject to
/// elision.
#[macro_export]
macro_rules!
debug_error
{
...
...
@@ -22,7 +25,7 @@ macro_rules! debug_error {
}
/// Log message at the WARN level in debug-mode (when debug-assertions are
/// enabled). In release
mode it becomes DEBUG level, and possibly subject to
/// enabled). In release
-
mode it becomes DEBUG level, and possibly subject to
/// elision.
#[macro_export]
macro_rules!
debug_warn
{
...
...
@@ -32,7 +35,7 @@ macro_rules! debug_warn {
}
/// Log message at the INFO level in debug-mode (when debug-assertions are
/// enabled). In release
mode it becomes DEBUG level, and possibly subject to
/// enabled). In release
-
mode it becomes DEBUG level, and possibly subject to
/// elision.
#[macro_export]
macro_rules!
debug_info
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment