Skip to content
GitLab
Projects
Groups
Snippets
/
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
daca3450
Commit
daca3450
authored
Dec 03, 2012
by
JINMEI Tatuya
Browse files
[2445] constify
parent
0b06fc6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/log/log_buffer.cc
View file @
daca3450
...
...
@@ -59,7 +59,8 @@ LogBuffer::flush_stdout() {
// So we print a slightly shortened format (it really only excludes
// the time and the pid)
std
::
vector
<
log4cplus
::
spi
::
InternalLoggingEvent
>::
const_iterator
it
;
log4cplus
::
LogLevelManager
&
manager
=
log4cplus
::
getLogLevelManager
();
const
log4cplus
::
LogLevelManager
&
manager
=
log4cplus
::
getLogLevelManager
();
for
(
it
=
stored_
.
begin
();
it
!=
stored_
.
end
();
++
it
)
{
std
::
cout
<<
manager
.
toString
(
it
->
getLogLevel
())
<<
" "
<<
"["
<<
it
->
getLoggerName
()
<<
"] "
<<
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment