aggiunto controllo per evitare troppi log quando quella stored non manca
This commit is contained in:
parent
92278ce48a
commit
b3de866d14
@ -1447,6 +1447,11 @@ namespace GestoreTrimestrale.ViewModels
|
|||||||
private void ObtainLogs()
|
private void ObtainLogs()
|
||||||
{
|
{
|
||||||
string getLogsProcedure = CACHE.getLogsProcedure;
|
string getLogsProcedure = CACHE.getLogsProcedure;
|
||||||
|
if (string.IsNullOrEmpty(getLogsProcedure))
|
||||||
|
{
|
||||||
|
logger.Warn("getLogsProcedure is null or empty");
|
||||||
|
return;
|
||||||
|
}
|
||||||
DataTable result = null;
|
DataTable result = null;
|
||||||
while (gestoreThread?.IsAlive == true)
|
while (gestoreThread?.IsAlive == true)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user