]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Print messages only shown with -v using Vg_DebugMsg, rather than Vg_UserMsg.
authorNicholas Nethercote <njn@valgrind.org>
Sun, 20 Mar 2005 18:21:14 +0000 (18:21 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Sun, 20 Mar 2005 18:21:14 +0000 (18:21 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3391

coregrind/vg_errcontext.c
coregrind/vg_translate.c

index 7f8927836d1262e726c63ce10672aa4f92da07f7..339161cbb604bf6fe84974d3e47b8df5875a6667 100644 (file)
@@ -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] );
    }
index d7e622bb4185f49c498905e2c6986fa480fa0ec7..af93e86d08796c41f2ba2b799f27541e00ac157c 100644 (file)
@@ -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 );