Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
7fda3fd9
Commit
7fda3fd9
authored
Dec 30, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
logger: Remove what seems to be useless.
parent
5b8e2978
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
modules/misc/logger.c
modules/misc/logger.c
+1
-7
No files found.
modules/misc/logger.c
View file @
7fda3fd9
...
@@ -372,14 +372,8 @@ static void Overflow (msg_cb_data_t *p_sys, msg_item_t *p_item, unsigned overrun
...
@@ -372,14 +372,8 @@ static void Overflow (msg_cb_data_t *p_sys, msg_item_t *p_item, unsigned overrun
int
verbosity
=
var_CreateGetInteger
(
p_sys
->
p_intf
,
"log-verbose"
);
int
verbosity
=
var_CreateGetInteger
(
p_sys
->
p_intf
,
"log-verbose"
);
if
(
verbosity
==
-
1
)
if
(
verbosity
==
-
1
)
verbosity
=
var_CreateGetInteger
(
p_sys
->
p_intf
,
"verbose"
);
verbosity
=
var_CreateGetInteger
(
p_sys
->
p_intf
,
"verbose"
);
int
priority
=
0
;
switch
(
p_item
->
i_type
)
if
(
verbosity
<
p_item
->
i_type
)
{
case
VLC_MSG_WARN
:
priority
=
1
;
break
;
case
VLC_MSG_DBG
:
priority
=
2
;
break
;
}
if
(
verbosity
<
priority
)
return
;
return
;
int
canc
=
vlc_savecancel
();
int
canc
=
vlc_savecancel
();
...
...
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