add overloads that take 'String message, LogPair... logPairs'

This commit is contained in:
2023-01-24 11:59:17 -06:00
parent 029f436071
commit c00120a1fc
2 changed files with 70 additions and 1 deletions

View File

@ -123,6 +123,16 @@ public class QLogger
/*******************************************************************************
**
*******************************************************************************/
public void trace(String message, LogPair... logPairs)
{
logger.trace(makeJsonString(message, null, logPairs));
}
/*******************************************************************************
**
*******************************************************************************/
@ -163,6 +173,16 @@ public class QLogger
/*******************************************************************************
**
*******************************************************************************/
public void debug(String message, LogPair... logPairs)
{
logger.debug(makeJsonString(message, null, logPairs));
}
/*******************************************************************************
**
*******************************************************************************/
@ -223,6 +243,16 @@ public class QLogger
/*******************************************************************************
**
*******************************************************************************/
public void info(String message, LogPair... logPairs)
{
logger.info(makeJsonString(message, null, logPairs));
}
/*******************************************************************************
**
*******************************************************************************/
@ -263,6 +293,16 @@ public class QLogger
/*******************************************************************************
**
*******************************************************************************/
public void warn(String message, LogPair... logPairs)
{
logger.warn(makeJsonString(message, null, logPairs));
}
/*******************************************************************************
**
*******************************************************************************/
@ -303,6 +343,16 @@ public class QLogger
/*******************************************************************************
**
*******************************************************************************/
public void error(String message, LogPair... logPairs)
{
logger.error(makeJsonString(message, null, logPairs));
}
/*******************************************************************************
**
*******************************************************************************/
@ -347,12 +397,26 @@ public class QLogger
**
*******************************************************************************/
private String makeJsonString(String message, Throwable t)
{
return (makeJsonString(message, t, null));
}
/*******************************************************************************
**
*******************************************************************************/
private String makeJsonString(String message, Throwable t, LogPair[] logPairs)
{
List<LogPair> logPairList = new ArrayList<>();
if(logPairs != null)
{
logPairList.addAll(Arrays.stream(logPairs).toList());
}
if(StringUtils.hasContent(message))
{
logPairList.add(logPair("message", message));
logPairList.add(0, logPair("message", message));
}
addSessionLogPair(logPairList);

View File

@ -9,6 +9,7 @@ import com.kingsrook.qqq.backend.core.context.QContext;
import com.kingsrook.qqq.backend.core.logging.QLogger;
import com.kingsrook.qqq.backend.core.model.metadata.QInstance;
import com.kingsrook.qqq.backend.core.model.session.QSession;
import com.kingsrook.qqq.backend.core.modules.backend.implementations.memory.MemoryRecordStore;
import com.kingsrook.qqq.backend.core.utils.TestUtils;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
@ -30,6 +31,8 @@ public class BaseTest
void baseBeforeEach()
{
QContext.init(TestUtils.defineInstance(), new QSession());
MemoryRecordStore.getInstance().reset();
MemoryRecordStore.resetStatistics();
}
@ -41,6 +44,8 @@ public class BaseTest
void baseAfterEach()
{
QContext.clear();
MemoryRecordStore.getInstance().reset();
MemoryRecordStore.resetStatistics();
}