Skip to content

Commit

Permalink
Corretti errori nel logging delle spedizioni AppIO.
Browse files Browse the repository at this point in the history
  • Loading branch information
pintorig committed Dec 4, 2023
1 parent c954e59 commit 07a4d10
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ public static String spedizioneNotifiche(IContext ctx){
numeroErrori ++;
}
int numOk = threads.size() - numeroErrori;
log.debug(MessageFormat.format(DEBUG_MSG_COMPLETATA_ESECUZIONE_DEI_0_THREADS_OK_1_ERRORE_2, threads.size(), numOk, numeroErrori));
log.debug(DEBUG_MSG_COMPLETATA_ESECUZIONE_DEI_0_THREADS_OK_1_ERRORE_2, threads.size(), numOk, numeroErrori);
break; // esco
}
}
Expand Down Expand Up @@ -459,7 +459,7 @@ public static String spedizioneNotificheAppIO(IContext ctx){
numeroErrori ++;
}
int numOk = threads.size() - numeroErrori;
log.debug(MessageFormat.format(DEBUG_MSG_COMPLETATA_ESECUZIONE_DEI_0_THREADS_OK_1_ERRORE_2, threads.size(), numOk, numeroErrori));
log.debug(DEBUG_MSG_COMPLETATA_ESECUZIONE_DEI_0_THREADS_OK_1_ERRORE_2, threads.size(), numOk, numeroErrori);
break; // esco
}
}
Expand Down

0 comments on commit 07a4d10

Please sign in to comment.