Decrease ORMlite's internal log verbosity or disable it
问题 We're doing some heavy performance tuning in our app, hence we start using method tracing to find the bottlenecks. At first glance Ormlite was fine, but we found that for example in one query that takes 8ms, 6ms (75%) were needed by Ormlite's internal log. Futhermore those log call are in DEBUG level. At the moment I have tried (without success) setting log level to ERROR this way: with adb: adb shell setprop log.tag.ORMLite ERROR with logback: <logger name="com.j256.ormlite" level="ERROR"/>