From 6d361ced4156df9dd942c6538fd5493df6bd8730 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 6 May 2024 17:31:58 +0200 Subject: [PATCH] Set Windows build to quiet (#6862) The normal flag generates 290 megabytes of log output for a regular build. Setting it to quiet will reduce this and still print errors. --- scripts/ci/windows-build.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/windows-build.bat b/scripts/ci/windows-build.bat index 714f19387..71c9bfc71 100644 --- a/scripts/ci/windows-build.bat +++ b/scripts/ci/windows-build.bat @@ -21,7 +21,7 @@ msbuild OSRM.sln ^ /p:BuildInParallel=true ^ /m:%NUMBER_OF_PROCESSORS% ^ /toolsversion:Current ^ -/clp:Verbosity=normal ^ +/clp:Verbosity=quiet ^ /nologo IF %ERRORLEVEL% NEQ 0 GOTO ERROR