From: Nicholas Nethercote Date: Sun, 20 Mar 2005 18:21:14 +0000 (+0000) Subject: Print messages only shown with -v using Vg_DebugMsg, rather than Vg_UserMsg. X-Git-Tag: svn/VALGRIND_3_0_0~927 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=404d5824bec3a181efe371774f6fe800cbca563c;p=thirdparty%2Fvalgrind.git Print messages only shown with -v using Vg_DebugMsg, rather than Vg_UserMsg. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3391 --- diff --git a/coregrind/vg_errcontext.c b/coregrind/vg_errcontext.c index 7f8927836d..339161cbb6 100644 --- a/coregrind/vg_errcontext.c +++ b/coregrind/vg_errcontext.c @@ -962,8 +962,8 @@ void VG_(load_suppressions) ( void ) vg_suppressions = NULL; for (i = 0; i < VG_(clo_n_suppressions); i++) { if (VG_(clo_verbosity) > 1) { - VG_(message)(Vg_UserMsg, "Reading suppressions file: %s", - VG_(clo_suppressions)[i] ); + VG_(message)(Vg_DebugMsg, "Reading suppressions file: %s", + VG_(clo_suppressions)[i] ); } load_one_suppressions_file( VG_(clo_suppressions)[i] ); } diff --git a/coregrind/vg_translate.c b/coregrind/vg_translate.c index d7e622bb41..af93e86d08 100644 --- a/coregrind/vg_translate.c +++ b/coregrind/vg_translate.c @@ -391,7 +391,7 @@ Bool VG_(translate) ( ThreadId tid, } else { VG_(strcpy)(name2, "???"); } - VG_(message)(Vg_UserMsg, + VG_(message)(Vg_DebugMsg, "TRANSLATE: 0x%llx (%s) redirected to 0x%llx (%s)", orig_addr, name1, redir, name2 );