diff --git a/LiMan.Api/Controllers/ReleaseController.cs b/LiMan.Api/Controllers/ReleaseController.cs index f169f5a..10b8465 100644 --- a/LiMan.Api/Controllers/ReleaseController.cs +++ b/LiMan.Api/Controllers/ReleaseController.cs @@ -209,6 +209,11 @@ namespace LiMan.APi.Controllers Log.Info($"Release recorded | {CurrRequest.CodApp} | {CurrRequest.VersNum} | {CurrRequest.VersText} | {CurrRequest.ReleaseDate} | {CurrRequest.RelTags}"); } } + else + { + Log.Error($"Errore: licenza UpdateManager non TROVATA | {CurrRequest.MasterKey}"); + await dataService.recordCall(CurrRequest.CodInst, CurrRequest.CodApp, $"ERROR POST:api/release/save:{CurrRequest.CodApp} | {CurrRequest.MasterKey}"); + } // recupero vers applicativo... var rawResult = await dataService.ReleaseGetByApp(CurrRequest.CodApp); if (rawResult != null && rawResult.Count > 0) @@ -220,7 +225,7 @@ namespace LiMan.APi.Controllers } else { - Log.Error($"Errore: licenza UpdateManager non trovata | {CurrRequest.MasterKey}"); + Log.Error($"Errore: licenza UpdateManager non VALIDA | {CurrRequest.MasterKey}"); await dataService.recordCall(CurrRequest.CodInst, CurrRequest.CodApp, $"ERROR POST:api/release/save:{CurrRequest.CodApp} | {CurrRequest.MasterKey}"); } return result;