Remove very loud log

This commit is contained in:
2024-04-17 18:58:21 -05:00
parent 482b0ca546
commit 51ba4367d1

View File

@ -23,7 +23,6 @@ package com.kingsrook.qqq.backend.core.actions.async;
import java.util.UUID; import java.util.UUID;
import com.kingsrook.qqq.backend.core.logging.QLogger;
/******************************************************************************* /*******************************************************************************
@ -34,7 +33,6 @@ import com.kingsrook.qqq.backend.core.logging.QLogger;
*******************************************************************************/ *******************************************************************************/
public class NonPersistedAsyncJobCallback extends AsyncJobCallback public class NonPersistedAsyncJobCallback extends AsyncJobCallback
{ {
private static final QLogger LOG = QLogger.getLogger(NonPersistedAsyncJobCallback.class);
private final AsyncJobStatus asyncJobStatus; private final AsyncJobStatus asyncJobStatus;
@ -56,10 +54,9 @@ public class NonPersistedAsyncJobCallback extends AsyncJobCallback
@Override @Override
protected void storeUpdatedStatus() protected void storeUpdatedStatus()
{ {
/////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////
// todo - downgrade or remove this before merging to dev // // noop - cf. base class, which writes to persistence here (our point is, we do not) //
/////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////
LOG.info("Not persisting status from a NonPersistedAsyncJobCallback: " + asyncJobStatus.getJobName() + " / " + asyncJobStatus.getMessage());
} }
} }