Index: libs/libmyth/mythcontext.h
===================================================================
RCS file: /var/lib/mythcvs/mythtv/libs/libmyth/mythcontext.h,v
retrieving revision 1.175
diff -u -r1.175 mythcontext.h
--- libs/libmyth/mythcontext.h	23 Jan 2005 22:45:30 -0000	1.175
+++ libs/libmyth/mythcontext.h	30 Jan 2005 17:27:45 -0000
@@ -47,6 +47,7 @@
     VB_AUDIO     = 0x0400,
     VB_LIBAV     = 0x0800,
     VB_JOBQUEUE  = 0x1000,
+    VB_SIPARSER  = 0x2000,
     VB_NONE      = 0x0000,
     VB_ALL       = 0xffff
 };
Index: programs/mythbackend/main.cpp
===================================================================
RCS file: /var/lib/mythcvs/mythtv/programs/mythbackend/main.cpp,v
retrieving revision 1.79
diff -u -r1.79 main.cpp
--- programs/mythbackend/main.cpp	21 Jan 2005 18:53:48 -0000	1.79
+++ programs/mythbackend/main.cpp	30 Jan 2005 17:27:46 -0000
@@ -307,6 +307,11 @@
                             print_verbose_messages |= VB_LIBAV;
                             verboseString += " " + *it;
                         }
+                        else if(!strcmp(*it,"siparser"))
+                        {
+                            print_verbose_messages |= VB_SIPARSER;
+                            verboseString += " " + *it;
+                        }
                         else
                         {
                             cerr << "Unknown argument for -v/--verbose: "
Index: libs/libmythtv/siparser.h
===================================================================
RCS file: /var/lib/mythcvs/mythtv/libs/libmythtv/siparser.h,v
retrieving revision 1.1
diff -u -r1.1 siparser.h
--- libs/libmythtv/siparser.h	23 Jan 2005 22:45:30 -0000	1.1
+++ libs/libmythtv/siparser.h	30 Jan 2005 17:27:46 -0000
@@ -1,3 +1,4 @@
+
 #ifndef SIPARSER_H
 #define SIPARSER_H
 
@@ -284,7 +285,7 @@
 };
 
 #define SIPARSER(args...) \
-    VERBOSE(VB_GENERAL, QString("SIParser: ") << args);
+    VERBOSE(VB_SIPARSER, QString("SIParser: ") << args);
         
 
 #endif // SIPARSER_H
