Log and thread name adjustments - trying to make loggly more useful

This commit is contained in:
2022-11-08 09:08:15 -06:00
parent 236eff523e
commit 1a287fe35a
15 changed files with 57 additions and 14 deletions

View File

@ -64,7 +64,7 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
if(CollectionUtils.nullSafeIsEmpty(insertInput.getRecords()))
{
LOG.info("Insert request called with 0 records. Returning with no-op");
LOG.debug("Insert request called with 0 records. Returning with no-op");
return (insertOutput);
}

View File

@ -65,7 +65,7 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
if(CollectionUtils.nullSafeIsEmpty(updateInput.getRecords()))
{
LOG.info("Update request called with 0 records. Returning with no-op");
LOG.debug("Update request called with 0 records. Returning with no-op");
return (updateOutput);
}