We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff793b5 commit 0778113Copy full SHA for 0778113
1 file changed
src/main/java/the/bytecode/club/bytecodeviewer/gui/components/JFrameConsole.java
@@ -143,7 +143,9 @@ public String trimConsoleText(final String s)
143
//trim
144
int skipped = len - max;
145
String trimmed = s.substring(0, max);
146
- trimmed = ("WARNING: Skipping " + skipped + " chars, allowing " + max + "\n\r")
+
147
+ if(!trimmed.startsWith("WARNING: Skipping"))
148
+ trimmed = ("WARNING: Skipping " + skipped + " chars, allowing " + max + "\n\r")
149
+ "Full log saved to: " + tempFile.getAbsolutePath() + "\n\r\n\r"
150
+ trimmed;
151
0 commit comments