Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
66fa2a03
Commit
66fa2a03
authored
Mar 20, 2015
by
Gautier Pelloux-Prayer
Browse files
liblinphone_tester.c: correctly set log level mask
parent
ba701257
Changes
2
Hide whitespace changes
Inline
Side-by-side
mediastreamer2
@
29402bc0
Subproject commit
5c66c136965433d1738906c8ff8ff170b4ffc18
3
Subproject commit
29402bc07879edf7895780fc85f72664e1b725c
3
tester/liblinphone_tester.c
View file @
66fa2a03
...
...
@@ -186,7 +186,7 @@ int main (int argc, char *argv[])
for
(
i
=
1
;
i
<
argc
;
++
i
)
{
if
(
strcmp
(
argv
[
i
],
"--verbose"
)
==
0
)
{
linphone_core_set_log_level_mask
(
ORTP_MESSAGE
);
linphone_core_set_log_level_mask
(
ORTP_MESSAGE
|
ORTP_WARNING
|
ORTP_ERROR
|
ORTP_FATAL
);
}
else
if
(
strcmp
(
argv
[
i
],
"--silent"
)
==
0
)
{
linphone_core_set_log_level_mask
(
ORTP_FATAL
);
}
else
if
(
strcmp
(
argv
[
i
],
"--log-file"
)
==
0
){
...
...
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