Skip to content

Commit 3d27d72

Browse files
committed
Increase logging level where needed (currently using Logger.throwing)
1 parent ecdabf3 commit 3d27d72

File tree

1 file changed

+1
-1
lines changed
  • visualvm/core/src/org/graalvm/visualvm/core/datasupport

1 file changed

+1
-1
lines changed

visualvm/core/src/org/graalvm/visualvm/core/datasupport/Utils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ private static byte[] imageToBytes(Image image, String format) {
531531
try {
532532
ImageIO.write(bufferedImage, format, outputStream);
533533
} catch (Exception e) {
534-
LOGGER.throwing(Utils.class.getName(), "imageToBytes", e); // NOI18N
534+
LOGGER.log(Level.WARNING, Utils.class.getName() + "imageToBytes", e); // NOI18N
535535
return null;
536536
}
537537

0 commit comments

Comments
 (0)