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

@ -390,7 +390,7 @@ public abstract class AbstractRDBMSAction implements QActionInterface
{
try
{
LOG.info("Opening transaction");
LOG.debug("Opening transaction");
Connection connection = getConnection(input);
return (new RDBMSTransaction(connection));

View File

@ -59,7 +59,7 @@ public class RDBMSInsertAction extends AbstractRDBMSAction implements InsertInte
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");
rs.setRecords(new ArrayList<>());
return (rs);
}

View File

@ -73,9 +73,9 @@ public class RDBMSTransaction extends QBackendTransaction
{
try
{
RDBMSTransaction.LOG.info("Committing transaction");
RDBMSTransaction.LOG.debug("Committing transaction");
connection.commit();
RDBMSTransaction.LOG.info("Commit complete");
RDBMSTransaction.LOG.debug("Commit complete");
}
catch(Exception e)
{

View File

@ -71,7 +71,7 @@ public class RDBMSUpdateAction extends AbstractRDBMSAction implements UpdateInte
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");
rs.setRecords(new ArrayList<>());
return (rs);
}