Home > Mobile >  Disable Jooq tip of the day
Disable Jooq tip of the day

Time:03-14

Is there any way to disable jooQ from printing the tip of the day?

enter image description here

CodePudding user response:

As you can see by looking at the source code, you can disable it by defining the system property org.jooq.no-tips to true, for example on the command line, in a properties file, or in your code:

System.setProperty("org.jooq.no-logo", "true");
  • Related