You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're logging several things at INFO level in KiwiSpringMongoQueries. These messages is cluttering up service logs in our dev environment, where we often have the default log level set to INFO.
The INFO messages are:
in addDateBounds when adding date bounds when both are null -?> "start and end are both null; ignoring"
in addPartialOrEqualMatchCriteria when matchString is blank -> "matchString is blank; ignoring"
in addMultiplePartialOrEqualMatchCriteria when matchStrings is blank ->"matchStrings is null or empty; ignoring"
in addInCriteriaFromCsv when csv is blank -> "csv is blank; ignoring"
These should be changed to DEBUG level.
The text was updated successfully, but these errors were encountered:
We're logging several things at
INFO
level inKiwiSpringMongoQueries
. These messages is cluttering up service logs in our dev environment, where we often have the default log level set toINFO
.The
INFO
messages are:addDateBounds
when adding date bounds when both are null -?>"start and end are both null; ignoring"
addPartialOrEqualMatchCriteria
whenmatchString
is blank ->"matchString is blank; ignoring"
addMultiplePartialOrEqualMatchCriteria
whenmatchStrings
is blank ->"matchStrings is null or empty; ignoring"
addInCriteriaFromCsv
whencsv
is blank ->"csv is blank; ignoring"
These should be changed to
DEBUG
level.The text was updated successfully, but these errors were encountered: