mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Log and thread name adjustments - trying to make loggly more useful
This commit is contained in:
@ -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));
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user