Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
Base
Commits
feebe42b
Commit
feebe42b
authored
Nov 23, 2020
by
Martin Marinov
Browse files
Merge commit '
542ced54
'
parents
f3926560
542ced54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Debug/DebConfig.hh
View file @
feebe42b
...
...
@@ -80,6 +80,14 @@ private:
Config
&
operator
=
(
const
Config
&
);
};
/// Helper struct to locally set the global output level and reset it when leaving the scope
struct
ScopedOutputLevel
{
ScopedOutputLevel
(
int
level
)
:
lvl_bfre_
(
Config
::
query
().
output_level
)
{
Config
::
modify
().
output_level
=
level
;
}
~
ScopedOutputLevel
()
{
Config
::
modify
().
output_level
=
lvl_bfre_
;
}
int
lvl_bfre_
;
};
};
// namespace Debug
#endif // DEB_ON
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment