This commit is contained in:
2020-03-23 19:58:27 +00:00
parent a40aa0cc90
commit cb08a727fa
4 changed files with 8 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ namespace AyaNova.PickList
internal static class PickListFetcher
{
internal static async Task<List<NameIdActiveItem>> GetResponseAsync(IAyaPickList PickList, string autoCompleteQuery,
string tagSpecificQuery, bool includeInactive, AyContext ct, ILogger log)
string tagSpecificQuery, bool includeInactive, long preId, AyContext ct, ILogger log)
{
//Sort out effective Template
@@ -68,7 +68,7 @@ namespace AyaNova.PickList
//log out the exception and the query
log.LogInformation("PickList query failed unexpectedly. Query was:");
log.LogInformation(q);
log.LogInformation(e,"DB Exception");
log.LogInformation(e, "DB Exception");
throw new System.Exception("PickListFetcher - Query failed see log");
}