Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Nov 11, 2023
1 parent 7f46b02 commit 2a3e561
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/groovy/nucleodb.library.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = 'com.nucleodb'
version = '1.9.27'
version = '1.9.28'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,8 @@ private boolean saveInternal(Connection connection, String changeUUID) {
try {
String json = Serializer.getObjectMapper().getOm().writeValueAsString(patch);
changes = Serializer.getObjectMapper().getOm().readValue(json, List.class);

Serializer.log(json);
if (changes != null && changes.size() > 0) {
ConnectionUpdate updateEntry = new ConnectionUpdate(connection.getVersion(), json, changeUUID, connection.getUuid());
producer.push(updateEntry, null);
Expand Down

0 comments on commit 2a3e561

Please sign in to comment.