Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
9ba0013f
Commit
9ba0013f
authored
Oct 23, 2012
by
JINMEI Tatuya
Browse files
[2211] adjusted log severity from ERROR to FATAL before aborting.
parent
d709ef90
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/auth/datasrc_clients_mgr.h
View file @
9ba0013f
...
...
@@ -383,11 +383,11 @@ DataSrcClientsBuilderBase<MutexType, CondVarType>::run() {
LOG_INFO
(
auth_logger
,
AUTH_DATASRC_CLIENTS_BUILDER_STOPPED
);
}
catch
(
const
std
::
exception
&
ex
)
{
// We explicitly catch exceptions so we can log it as soon as possible.
LOG_
ERROR
(
auth_logger
,
AUTH_DATASRC_CLIENTS_BUILDER_FAILED
).
LOG_
FATAL
(
auth_logger
,
AUTH_DATASRC_CLIENTS_BUILDER_FAILED
).
arg
(
ex
.
what
());
assert
(
false
);
}
catch
(...)
{
LOG_
ERROR
(
auth_logger
,
AUTH_DATASRC_CLIENTS_BUILDER_FAILED_UNEXPECTED
);
LOG_
FATAL
(
auth_logger
,
AUTH_DATASRC_CLIENTS_BUILDER_FAILED_UNEXPECTED
);
assert
(
false
);
}
}
...
...
Write
Preview
Markdown
is supported
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