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 t
ORMLite documentation on Android mentions how to enable the logs over adb: http://ormlite.com/javadoc/ormlite-core/doc-files/ormlite_4.html#Android-Logging
However, there's no mention how to disable them.
From @Axxiss answer, we can see the proper log level is ERROR.
Thus, to disable the logs using adb:
adb shell setprop log.tag.StatementExecutor ERROR
adb shell setprop log.tag.BaseMappedStatement ERROR
adb shell setprop log.tag.MappedCreate ERROR