[core] Add milliseconds to ConsoleDebugger's timestamp

This commit is contained in:
Florian Schmaus 2023-12-06 20:55:37 +01:00
parent 688c06020b
commit 844ebbf4c5
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ import org.jivesoftware.smack.util.ExceptionUtil;
* @author Gaston Dombiak * @author Gaston Dombiak
*/ */
public class ConsoleDebugger extends AbstractDebugger { public class ConsoleDebugger extends AbstractDebugger {
private final SimpleDateFormat dateFormatter = new SimpleDateFormat("HH:mm:ss"); private final SimpleDateFormat dateFormatter = new SimpleDateFormat("HH:mm:ss.S");
public ConsoleDebugger(XMPPConnection connection) { public ConsoleDebugger(XMPPConnection connection) {
super(connection); super(connection);