mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Prefer AndroidDebugger over JulDebugger
since most JUL implementations do not print log messages of level FINE (or lower) per default. Therefore the debugging output is not seen by the user who wants to debug and a second step is required to configure JUL to also log FINE or lower log messages to the console.
This commit is contained in:
parent
7640414e8d
commit
8bfc887f63
1 changed files with 1 additions and 1 deletions
|
@ -37,8 +37,8 @@ public class ReflectionDebuggerFactory implements SmackDebuggerFactory {
|
|||
*/
|
||||
private static final String[] DEFAULT_DEBUGGERS = new String[] {
|
||||
"org.jivesoftware.smackx.debugger.EnhancedDebugger",
|
||||
"org.jivesoftware.smack.debugger.JulDebugger",
|
||||
"org.jivesoftware.smackx.debugger.android.AndroidDebugger",
|
||||
"org.jivesoftware.smack.debugger.JulDebugger",
|
||||
"org.jivesoftware.smack.debugger.LiteDebugger",
|
||||
"org.jivesoftware.smack.debugger.ConsoleDebugger" };
|
||||
|
||||
|
|
Loading…
Reference in a new issue