Reduce the verbosity of optdata sync on stdout (#12543)
authorDaniel Podder <dapodd@microsoft.com>
Thu, 29 Jun 2017 09:05:38 +0000 (04:05 -0500)
committerGitHub <noreply@github.com>
Thu, 29 Jun 2017 09:05:38 +0000 (04:05 -0500)
Set the "StandardOutputImportance" attribute on the RestoreOptData
target to low, matching the "RestoreNETCorePlatforms" target. Logging
to sync.log remains verbose, but stdout on the console is made much less
verbose.

Fixes #12127

build.proj

index 8d15cbc..3889d1c 100644 (file)
@@ -25,7 +25,8 @@
   </Target>
 
   <Target Name="RestoreOptData">
-    <Exec Command="$(DotnetRestoreCommand) $(SourceDir).nuget/optdata/optdata.csproj" />
+    <Exec Command="$(DotnetRestoreCommand) $(SourceDir).nuget/optdata/optdata.csproj"
+          StandardOutputImportance="Low" />
   </Target>
 
   <!--