From: Julian Seward Date: Fri, 12 Feb 2010 12:19:36 +0000 (+0000) Subject: Reduce verbosity of the PDB reader a bit. Original verbosity is still X-Git-Tag: svn/VALGRIND_3_6_0~384 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be103bbcfcd3e1d440476f744379139e802b759c;p=thirdparty%2Fvalgrind.git Reduce verbosity of the PDB reader a bit. Original verbosity is still available using "-v". git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11040 --- diff --git a/coregrind/m_debuginfo/readpdb.c b/coregrind/m_debuginfo/readpdb.c index 1f8101c5dd..276366a1ec 100644 --- a/coregrind/m_debuginfo/readpdb.c +++ b/coregrind/m_debuginfo/readpdb.c @@ -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,