From 06e11279de4d6affc2d2fadc426a7ded9e4ef270 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Wed, 18 Dec 2019 09:16:24 +0100 Subject: [PATCH] =?UTF-8?q?Cambio=20verbosit=C3=A0=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IOB-WIN/IobGeneric.cs | 4 +--- Jenkinsfile | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/IOB-WIN/IobGeneric.cs b/IOB-WIN/IobGeneric.cs index 72f3f450..7781f3b2 100644 --- a/IOB-WIN/IobGeneric.cs +++ b/IOB-WIN/IobGeneric.cs @@ -3103,19 +3103,17 @@ namespace IOB_WIN // resta indietro di ALMENO 2 pezzi x recuperare 1:1... numIncr = delta > maxSendPzCountBlock + 1 ? maxSendPzCountBlock : delta - 2; // invio il num max di pezzi ammesso in blocco! - lgInfo($"Predisposizione chiamata incremento contapezzi in blocco per {numIncr} pezzi"); lastUrl = $"{urlAddPzCount}{numIncr}"; string resp = utils.callUrlNow(lastUrl); if (!string.IsNullOrEmpty(resp)) { - lgInfo($"Risposta chiamata incremento contapezzi: {resp}"); // dalla risposta (come numero) capisco SE ha aggiunto i pezzi (e quanti) int.TryParse(resp, out qtyAdded); if (qtyAdded > 0) { // incremento il contapezzi della quantità restituita e confermata contapezzi += qtyAdded; - lgInfo($"Confermato incremento contapezzi interno a {contapezzi} post chiamata diretta"); + lgInfo($"trySendPzCountBlock: send {numIncr} | resp {qtyAdded} | contapezzi interno: {contapezzi}"); } } currDispData.newUrlCallData = lastUrl; diff --git a/Jenkinsfile b/Jenkinsfile index d82a0d3f..ae58c012 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ pipeline { /* calcolo numero versione... diverso x branch MASTER/DEVELOP */ script { - withEnv(['NEXT_BUILD_NUMBER=604']) { + withEnv(['NEXT_BUILD_NUMBER=605']) { // env.versionNumber = VersionNumber(versionNumberString : '2.6.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true) env.versionNumber = VersionNumber(versionNumberString : '2.6.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}') env.APP_NAME = 'MAPO-IOB-WIN'