We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c52628 commit 4fb91b4Copy full SHA for 4fb91b4
src/main/java/com/lowtuna/jsonblob/core/BlobCleanupConsumer.java
@@ -58,13 +58,13 @@ public void run() {
58
}
59
60
} catch (InterruptedException e) {
61
- e.printStackTrace();
+ log.warn("Interrupted while trying to poll queue", e);
62
} catch (JsonParseException e) {
63
+ log.warn("Couldn't parse JSON from BlobMetadataContainer", e);
64
} catch (JsonMappingException e) {
65
+ log.warn("Couldn't map JSON from BlobMetadataContainer", e);
66
} catch (IOException e) {
67
+ log.warn("Couldn't read json for BlobMetadataContainer file", e);
68
69
70
0 commit comments