Skip to content

Commit 92db477

Browse files
committed
Fix debug log
1 parent a0227a1 commit 92db477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

accesscontroltool-bundle/src/main/java/biz/netcentric/cq/tools/actool/configreader/ConfigFilesRetrieverImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public String getContentAsString() throws Exception {
175175
StringWriter writer = new StringWriter();
176176
IOUtils.copy(configInputStream, writer, "UTF-8");
177177
String configData = writer.toString();
178-
LOG.debug("Found configuration data of node: {} with {} bytes", node.getPath(), configData.getBytes());
178+
LOG.debug("Found configuration data of node: {} with {} chars", node.getPath(), configData.length());
179179
return configData;
180180
}
181181
}

0 commit comments

Comments
 (0)