remove log highlighting with character literal

This commit is contained in:
woodser 2025-04-10 08:28:13 -04:00 committed by woodser
parent 31fbf9c4e8
commit f19ed19325

View file

@ -96,7 +96,7 @@ public abstract class TradeProtocol implements DecryptedDirectMessageListener, D
private static final String TIMEOUT_REACHED = "Timeout reached.";
public static final int MAX_ATTEMPTS = 5; // max attempts to create txs and other wallet functions
public static final long REPROCESS_DELAY_MS = 5000;
public static final String LOG_HIGHLIGHT = "\u001B[36m"; // cyan
public static final String LOG_HIGHLIGHT = ""; // TODO: how to highlight some logs with cyan? ("\u001B[36m")? coloring works in the terminal but prints character literals to .log files
protected final ProcessModel processModel;
protected final Trade trade;