]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Reduce verbosity of the PDB reader a bit. Original verbosity is still
authorJulian Seward <jseward@acm.org>
Fri, 12 Feb 2010 12:19:36 +0000 (12:19 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 12 Feb 2010 12:19:36 +0000 (12:19 +0000)
available using "-v".

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11040

coregrind/m_debuginfo/readpdb.c

index 1f8101c5dd143ed071dc03fc54dc27ebc8107fcc..276366a1ec4c6779eb5a014ef74cf4909386dc9d 100644 (file)
@@ -1864,7 +1864,7 @@ static void pdb_dump( struct pdb_reader* pdb,
       }
    }
 
-   if (VG_(clo_verbosity) > 0) {
+   if (VG_(clo_verbosity) > 1) {
       VG_(message)(Vg_DebugMsg,
                    "PDB_READER:\n");
       VG_(message)(Vg_DebugMsg,
@@ -2176,7 +2176,7 @@ static void pdb_dump( struct pdb_reader* pdb,
    if ( types_image ) ML_(dinfo_free)( types_image );
    if ( pdb->u.jg.toc ) ML_(dinfo_free)( pdb->u.jg.toc );
 
-   if (VG_(clo_verbosity) > 0) {
+   if (VG_(clo_verbosity) > 1) {
       VG_(message)(Vg_DebugMsg,
                    "   # symbols read = %llu\n", n_syms_read );
       VG_(message)(Vg_DebugMsg,