Skip to content

Commit

Permalink
Fix | 删除不必要且会占用大量空间的日志
Browse files Browse the repository at this point in the history
  • Loading branch information
AresConnor committed May 26, 2024
1 parent 587ac52 commit d2d1deb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion MCSL2Lib/ServerControllers/serverInstaller.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ def onServerDownloadProgress(self, bytesReceived, bytesTotal):
percent = bytesReceived * 100 / bytesTotal
except ZeroDivisionError:
percent = 0
MCSL2Logger.info(f"(正在下载核心... {percent:.0f}%) 使用 BMCLAPI 下载")
self.downloadServerProgress.emit(
self.tr("(正在下载核心... {:.0f}%) 使用 BMCLAPI 下载").format(percent)
)
Expand Down

0 comments on commit d2d1deb

Please sign in to comment.