|
From: Nicholas N. <nj...@ca...> - 2003-11-10 13:27:19
|
CVS commit by nethercote:
Don't print this debug msg if -q is on.
MERGE TO STABLE
M +1 -1 vg_main.c 1.119
--- valgrind/coregrind/vg_main.c #1.118:1.119
@@ -1271,5 +1271,5 @@ static void process_cmd_line_options ( v
}
- if (VG_(clo_log_to) != VgLogTo_Fd) {
+ if (VG_(clo_verbosity) > 0 && VG_(clo_log_to) != VgLogTo_Fd) {
VG_(message)(Vg_UserMsg, "");
VG_(message)(Vg_UserMsg,
|