Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,7 @@ protected void executeQuery(Query query, String collectionName, DocumentCallback

if (LOGGER.isDebugEnabled()) {
LOGGER.debug(String.format("Executing query: %s fields: %s sort: %s in collection: %s",
// TBD: move serializeToJsonSafely() to "XXXDelegate" class and make this class a spring managed bean for user customization
serializeToJsonSafely(queryObject), fieldsObject, serializeToJsonSafely(sortObject), collectionName));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ private static void toFlatMap(String currentPath, Object source, Map<String, Obj
* @param value
* @return the serialized value or {@literal null}.
*/
// TBD: add serializeToJsonSafely(@Nullable Document document, JsonWriterSettings settings) {}
@Nullable
public static String serializeToJsonSafely(@Nullable Object value) {

Expand Down