Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
6409fdbc
Commit
6409fdbc
authored
Nov 08, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark --verbose-objects obsolete (refs #7737)
parent
f54cd63a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
src/libvlc-module.c
src/libvlc-module.c
+1
-12
No files found.
src/libvlc-module.c
View file @
6409fdbc
...
@@ -87,16 +87,6 @@ static const char *const ppsz_snap_formats[] =
...
@@ -87,16 +87,6 @@ static const char *const ppsz_snap_formats[] =
"This is the verbosity level (0=only errors and " \
"This is the verbosity level (0=only errors and " \
"standard messages, 1=warnings, 2=debug).")
"standard messages, 1=warnings, 2=debug).")
#define VERBOSE_OBJECTS_TEXT N_("Choose which objects should print debug " \
"message")
#define VERBOSE_OBJECTS_LONGTEXT N_( \
"This is a ',' separated string, each object should be prefixed by " \
"a '+' or a '-' to respectively enable or disable it. The keyword " \
"'all' refers to all objects. Objects can be referred to by their " \
"type or module name. Rules applying to named objects take precedence " \
"over rules applying to object types. Note that you still need to " \
"use -vvv to actually display debug message.")
#define QUIET_TEXT N_("Be quiet")
#define QUIET_TEXT N_("Be quiet")
#define QUIET_LONGTEXT N_( \
#define QUIET_LONGTEXT N_( \
"Turn off all warning and information messages.")
"Turn off all warning and information messages.")
...
@@ -2093,8 +2083,7 @@ vlc_module_begin ()
...
@@ -2093,8 +2083,7 @@ vlc_module_begin ()
add_integer
(
"verbose"
,
0
,
VERBOSE_TEXT
,
VERBOSE_LONGTEXT
,
add_integer
(
"verbose"
,
0
,
VERBOSE_TEXT
,
VERBOSE_LONGTEXT
,
false
)
false
)
change_short
(
'v'
)
change_short
(
'v'
)
add_string
(
"verbose-objects"
,
0
,
VERBOSE_OBJECTS_TEXT
,
VERBOSE_OBJECTS_LONGTEXT
,
add_obsolete_string
(
"verbose-objects"
)
/* since 2.1.0 */
false
)
add_bool
(
"quiet"
,
0
,
QUIET_TEXT
,
QUIET_LONGTEXT
,
false
)
add_bool
(
"quiet"
,
0
,
QUIET_TEXT
,
QUIET_LONGTEXT
,
false
)
change_short
(
'q'
)
change_short
(
'q'
)
...
...
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