Parametrizzato update label del logWatch

This commit is contained in:
Samuele E. Locatelli
2019-12-04 17:59:55 +01:00
parent d7a6fced0d
commit a57299b71b
3 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -90,6 +90,7 @@ namespace IOB_WIN
/// Log verboso da configurazione (SOLO CHAIVE "verbose"...
/// </summary>
public bool isVerboseLog { get; set; } = utils.CRB("verbose");
protected int delayShowLogMs { get; set; } = utils.CRI("delayShowLogMs");
/// <summary>
/// Stringa corrente di log...
/// </summary>
@@ -134,7 +135,7 @@ namespace IOB_WIN
{
lblLogfile.Text = logWatchString;
lblLogfile.Refresh();
logWatchWriteVeto = adesso.AddSeconds(1);
logWatchWriteVeto = adesso.AddMilliseconds(delayShowLogMs);
}
}
catch (Exception exc)
+1
View File
@@ -55,6 +55,7 @@
<add key="autoSaveSec" value="60" />
<add key="waitRecMSec" value="20000" />
<add key="testCharSep" value="|" />
<add key="delayShowLogMs" value="250"/>
<!--conf file-->
<add key="dataPath" value="DATA" />
<add key="dataConfPath" value="DATA\CONF" />
Vendored
+1 -1
View File
@@ -16,7 +16,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=576']) {
withEnv(['NEXT_BUILD_NUMBER=577']) {
// 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'