Managing Sensitive Data in jOOQ 3.21+ Logs

One of jOOQ's most popular feature is the out-of-the-box debug logging experience. jOOQ developers find this feature very useful when developing their applications. Assuming you run a jOOQ query and configure your logger to print DEBUG log output: ctx.select(BOOK.ID, BOOK.TITLE) .from(BOOK) .orderBy(BOOK.ID) .limit(1, 2) .fetch(); When this query is executed, your log output might contain … Continue reading Managing Sensitive Data in jOOQ 3.21+ Logs