Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
senf
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
wiback
senf
Commits
b002aa51
Commit
b002aa51
authored
17 years ago
by
g0dil
Browse files
Options
Downloads
Patches
Plain Diff
Utils/Logger: Honor (default) runtime limit in fallback logging state
parent
32e3eba9
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
Utils/Logger/Config.hh
+5
-3
5 additions, 3 deletions
Utils/Logger/Config.hh
Utils/Logger/Target.cc
+5
-3
5 additions, 3 deletions
Utils/Logger/Target.cc
with
10 additions
and
6 deletions
Utils/Logger/Config.hh
+
5
−
3
View file @
b002aa51
...
...
@@ -99,6 +99,8 @@
The routing statements are processed by the targets in order, the first matching rule will
decide a log messages fate for that target.
\section config_fallback Fallback routing
There are two cases, where this setup may lead to inadvertently lost log messages:
\li When using a library which does internally use the Logger but not initializing the logger in
...
...
@@ -107,9 +109,9 @@
Since no route is set up in these cases, the messages will be dropped.
To counter this problem, the logger is initially in <em>fallback routing</em> state. If any log
message arrives in this state, the message will be
unconditionally
logged to the console
. T
he
first routing statement on any target will take the
logger out of this state and normal routing
will take place.
message arrives in this state, the message will be logged to the console
if it is above t
he
default runtime limit of it's stream. The
first routing statement on any target will take the
logger out of this state and normal routing
will take place.
\see \ref senf::log::Target
...
...
This diff is collapsed.
Click to expand it.
Utils/Logger/Target.cc
+
5
−
3
View file @
b002aa51
...
...
@@ -208,9 +208,11 @@ prefix_ void senf::log::detail::TargetRegistry::write(StreamBase const & stream,
AreaBase
const
&
area
,
unsigned
level
,
std
::
string
msg
)
{
if
(
fallbackRouting_
)
static_cast
<
Target
&>
(
ConsoleTarget
::
instance
()).
v_write
(
(
*
timeSource_
)(),
stream
.
v_name
(),
area
.
v_name
(),
level
,
msg
);
if
(
fallbackRouting_
)
{
if
(
level
>=
stream
.
defaultRuntimeLimit
())
static_cast
<
Target
&>
(
ConsoleTarget
::
instance
()).
v_write
(
(
*
timeSource_
)(),
stream
.
v_name
(),
area
.
v_name
(),
level
,
msg
);
}
else
area
.
write
(
(
*
timeSource_
)(),
stream
,
level
,
msg
);
}
...
...
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