downgraded expected audit failures to debug

This commit is contained in:
Tim Chamberlain
2024-03-05 13:59:50 -06:00
parent 3d9a6fa249
commit 83ba490eb9
2 changed files with 2 additions and 2 deletions

View File

@ -295,7 +295,7 @@ public class AuditAction extends AbstractQActionFunction<AuditInput, AuditOutput
}
catch(Exception e)
{
LOG.error("Error performing an audit", e);
LOG.debug("Error performing an audit", e);
}
}

View File

@ -187,7 +187,7 @@ public class DMLAuditAction extends AbstractQActionFunction<DMLAuditInput, DMLAu
}
catch(Exception e)
{
LOG.error("Error performing DML audit", e, logPair("type", String.valueOf(dmlType)), logPair("table", table.getName()));
LOG.debug("Error performing DML audit", e, logPair("type", String.valueOf(dmlType)), logPair("table", table.getName()));
}
return (output);