From: Andrew Dunstan Date: Fri, 8 Apr 2016 16:25:10 +0000 (-0400) Subject: Turn down MSVC compiler verbosity X-Git-Tag: REL9_4_8~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f79a7fa90a7111974aa986ddf2b108f4525d89ab;p=postgresql Turn down MSVC compiler verbosity Most of what is produced by the detailed verbosity level is of no interest at all, so switch to the normal level for more usable output. Christian Ullrich Backpatch to all live branches --- diff --git a/src/tools/msvc/build.pl b/src/tools/msvc/build.pl index e107d4120a..c4e4dc79a3 100644 --- a/src/tools/msvc/build.pl +++ b/src/tools/msvc/build.pl @@ -53,7 +53,7 @@ elsif (uc($ARGV[0]) ne "RELEASE") if ($buildwhat and $vcver >= 10.00) { system( -"msbuild $buildwhat.vcxproj /verbosity:detailed /p:Configuration=$bconf"); +"msbuild $buildwhat.vcxproj /verbosity:normal /p:Configuration=$bconf"); } elsif ($buildwhat) { @@ -61,7 +61,7 @@ elsif ($buildwhat) } else { - system("msbuild pgsql.sln /verbosity:detailed /p:Configuration=$bconf"); + system("msbuild pgsql.sln /verbosity:normal /p:Configuration=$bconf"); } # report status