We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf1103 commit bc3d8b1Copy full SHA for bc3d8b1
mythtv/libs/libmythbase/logging.cpp
@@ -1273,6 +1273,8 @@ void verboseHelp()
1273
{
1274
VerboseDef *item = vit.value();
1275
QString name = QString(" %1").arg(item->name, -15, ' ');
1276
+ if (item->helpText.isEmpty())
1277
+ continue;
1278
cerr << name.toLocal8Bit().constData() << " - " <<
1279
item->helpText.toLocal8Bit().constData() << endl;
1280
}
mythtv/libs/libmythbase/verbosedefs.h
@@ -141,9 +141,19 @@ VERBOSE_MAP(VB_RPLXQUEUE, 0x400000000LLU, true,
141
VERBOSE_MAP(VB_DECODE, 0x800000000LLU, true,
142
"MPEG2Fix Decode messages")
143
VERBOSE_MAP(VB_FLUSH, 0x1000000000LLU, true,
144
- "PLEASE FILL IN DESCRIPTION!")
+ "")
145
+/* Please do not add a description for VB_FLUSH, it
146
+ should not be passed in via "-v". It is used to
147
+ flush output to the standard output from console
148
+ programs that have debugging enabled.
149
+ */
150
VERBOSE_MAP(VB_STDIO, 0x2000000000LLU, true,
151
152
+/* Please do not add a description for VB_STDIO, it
153
154
+ send output to the standard output from console
155
156
157
VERBOSE_MAP(VB_GPU, 0x4000000000LLU, true,
158
"GPU Commercial Flagging messages")
159
VERBOSE_MAP(VB_GPUAUDIO, 0x8000000000LLU, true,
0 commit comments