Skip to content

Commit

Permalink
Change logging level to reduce verbosity of a log output
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Pinčuk <alexander.v.pinchuk@gmail.com>
  • Loading branch information
avpinchuk committed Jun 6, 2023
1 parent eff4f11 commit 339925f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -704,7 +704,7 @@ protected Class<?> findClass(String name) throws ClassNotFoundException {
final byte[] transformedBytes = transformer.transform(this, internalClassName, null,
classData.pd, classData.getClassBytes());
if (transformedBytes != null) { // null indicates no transformation
_logger.log(INFO, CULoggerInfo.actuallyTransformed, name);
_logger.log(Level.FINE, CULoggerInfo.actuallyTransformed, name);
classData.setClassBytes(transformedBytes);
}
}
Expand Down

0 comments on commit 339925f

Please sign in to comment.