refactor: 移除日志输出中的换行符
All checks were successful
构建上传工具 / build-tool (push) Successful in 2m26s

This commit is contained in:
2025-10-17 22:03:29 +08:00
parent 2f5708fbc2
commit 2092fae819

12
main.go
View File

@@ -329,7 +329,7 @@ func StartLooking(ctx context.Context, lookingPath string) {
AddLog("所有任务执行完成!") AddLog("所有任务执行完成!")
} }
AddLog(fmt.Sprintf("上传完成,耗时:%s\n", time.Since(start))) AddLog(fmt.Sprintf("上传完成,耗时:%s", time.Since(start)))
} }
for { for {
@@ -372,7 +372,7 @@ func processFile(ctx context.Context, filePath string, fileLines int) {
// 打开文件 // 打开文件
file, err := os.Open(filePath) file, err := os.Open(filePath)
if err != nil { if err != nil {
AddLog(fmt.Sprintf("无法打开文件 %s: %v\n", filePath, err)) AddLog(fmt.Sprintf("无法打开文件 %s: %v", filePath, err))
return return
} }
defer file.Close() defer file.Close()
@@ -395,7 +395,7 @@ func processFile(ctx context.Context, filePath string, fileLines int) {
lines <- scanner.Text() lines <- scanner.Text()
lineCount++ lineCount++
if lineCount%10000 == 0 { if lineCount%10000 == 0 {
AddLog(fmt.Sprintf("文件【%s】处理进度%.2f%%\n", filePath, float64(lineCount)/float64(fileLines)*100)) AddLog(fmt.Sprintf("文件【%s】处理进度%.2f%%", filePath, float64(lineCount)/float64(fileLines)*100))
} }
} }
@@ -403,11 +403,11 @@ func processFile(ctx context.Context, filePath string, fileLines int) {
wg.Wait() wg.Wait()
if err := scanner.Err(); err != nil { if err := scanner.Err(); err != nil {
AddLog(fmt.Sprintf("读取文件 %s 错误: %v\n", filePath, err)) AddLog(fmt.Sprintf("读取文件 %s 错误: %v", filePath, err))
return return
} }
AddLog(fmt.Sprintf("文件【%s】处理完成共处理 %d 行数据\n", filePath, lineCount)) AddLog(fmt.Sprintf("文件【%s】处理完成共处理 %d 行数据", filePath, lineCount))
} }
func processLines(ctx context.Context, lines <-chan string, workerID int, filePath string) { func processLines(ctx context.Context, lines <-chan string, workerID int, filePath string) {
@@ -422,7 +422,7 @@ func processLines(ctx context.Context, lines <-chan string, workerID int, filePa
} }
// 上传数据 // 上传数据
if err := api.UploadDataToServer(httpClient, line); err != nil { if err := api.UploadDataToServer(httpClient, line); err != nil {
AddLog(fmt.Sprintf("Worker %d (文件 %s): 上传失败: %v\n", workerID, filePath, err)) AddLog(fmt.Sprintf("Worker %d (文件 %s): 上传失败: %v", workerID, filePath, err))
} }
} }
} }