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
OpenDAS
dlib
Commits
be745777
Commit
be745777
authored
Apr 26, 2014
by
Davis King
Browse files
Fixed minor typos
parent
1b792043
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
examples/logger_ex_2.cpp
examples/logger_ex_2.cpp
+3
-3
No files found.
examples/logger_ex_2.cpp
View file @
be745777
...
...
@@ -39,8 +39,8 @@ using namespace dlib;
logp is the child of itself because all loggers are their own children :) But the other
two are child loggers of logp because their names start with logp.name() + "." which means
that whenever you set a property on a log it will also set that same property on all of
the log's children.
that whenever you set a property on a log
ger
it will also set that same property on all of
the log
ger
's children.
*/
logger
logp
(
"example"
);
logger
logt
(
"example.thread"
);
...
...
@@ -117,7 +117,7 @@ int main()
int
variable
=
8
;
//
h
ere is a debug message.
i
t won't print though because its log level is too low (it is below LINFO).
//
H
ere is a debug message.
I
t won't print though because its log level is too low (it is below LINFO).
logp
<<
LDEBUG
<<
"The integer variable is set to "
<<
variable
;
...
...
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