|
From: <sv...@va...> - 2010-02-12 13:22:48
|
Author: sewardj
Date: 2010-02-12 12:19:36 +0000 (Fri, 12 Feb 2010)
New Revision: 11040
Log:
Reduce verbosity of the PDB reader a bit. Original verbosity is still
available using "-v".
Modified:
trunk/coregrind/m_debuginfo/readpdb.c
Modified: trunk/coregrind/m_debuginfo/readpdb.c
===================================================================
--- trunk/coregrind/m_debuginfo/readpdb.c 2010-02-12 12:12:39 UTC (rev 11039)
+++ trunk/coregrind/m_debuginfo/readpdb.c 2010-02-12 12:19:36 UTC (rev 11040)
@@ -1864,7 +1864,7 @@
}
}
- 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 @@
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,
|