changed audit failures from debugs to warnings

This commit is contained in:
Tim Chamberlain
2024-03-05 14:24:19 -06:00
parent 83ba490eb9
commit b8330bd2f0
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) catch(Exception e)
{ {
LOG.debug("Error performing an audit", e); LOG.warn("Error performing an audit", e);
} }
} }

View File

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