-
Notifications
You must be signed in to change notification settings - Fork 278
How to log
二土 edited this page Mar 19, 2023
·
7 revisions
我可能没有解释好怎样抓log,就着这个问题issues#54,录了一个Windows下抓取log的Gif。
- 复制
Double-Click-to-Run-for-Win-debug.bat
,并重命名Double-Click-to-Run-for-Win-debug-o.bat
(名称随意) - 编辑
Double-Click-to-Run-for-Win-debug-o.bat
cd /d %~dp0
java -Dfile.encoding=utf-8 -Dhttps.protocols=TLSv1.2 -jar launch.jar >> log.txt 2>&1
pause
主要是>> log.txt
或者> log.txt
,区别在于追加还是覆盖原log
- 打开
log.txt
,筛选log。 log内容可参考下一节的gif
- Gif中, 原脚本
run-UI-debug.bat
系列替换为了Double-Click-to-Run-for-Win-debug.bat
- 图片大小
3.09MB
,加载不了/加载不全请下载到本地观看 - Gif以双击
Double-Click-to-Run-for-Win-debug.bat
开头 - 如何在控制栏选中大量文本
- 选中开头
- 将窗口拖拽调整位置,直到末尾的文本出现在窗口内
- 按中
Shift
键不松手,在文本末尾单击鼠标
- 在Gif结束,即选中文本以后,直接按
Enter
键复制文本即可