Hi everyone! I have a try catch block and I have a...
# exposed
a
Hi everyone! I have a try catch block and I have a transaction in the try block, my catch block has
Copy code
} catch (e: Throwable) {
                logger.error("Error processing message, ....", e)
however when I get an error I see
Copy code
2022-06-09 13:02:34.393  WARN 1 --- [       Thread-2] Exposed                                  : Transaction attempt #1 failed: java.sql.BatchUpdateException: Batch entry 249 INSERT....
but my error line isn't always logged, any idea why?