Add output file type, collect all files

This commit is contained in:
2016-05-18 13:05:24 -04:00
parent 4343f08733
commit 77ae03534e
19 changed files with 288 additions and 48 deletions
@@ -88,7 +88,7 @@ namespace LeafWeb.Web.Services.PiscalQueue
}
catch (Exception ex)
{
var errorMessage = FormatException(ex, pendingInputId);
var errorMessage = FormatException(ex);
Logger.Error(errorMessage);
DataService.SetLeafInputStatus(pendingInput, LeafInputStatusType.Exception, ex.Message, errorMessage);
}
@@ -124,11 +124,11 @@ namespace LeafWeb.Web.Services.PiscalQueue
}
catch (PiscalClientException ex)
{
PiscalExceptionHandle(ex, leafInput);
PiscalExceptionHandler(ex, leafInput);
}
catch (Exception ex)
{
var errorMessage = FormatException(ex, leafInput.Id);
var errorMessage = FormatException(ex);
Logger.Error(errorMessage);
}
}