remove debug log on worker

This commit is contained in:
xkm
2025-04-26 04:26:16 +08:00
committed by GitHub
parent 402f7283fa
commit da7a72e896

View File

@@ -4,7 +4,6 @@ import (
"context"
"encoding/json"
"fmt"
"log"
"os"
"path/filepath"
"time"
@@ -48,7 +47,6 @@ func monitorMemory(ctx context.Context, cli *client.Client, containerID string,
if statsJSON.MemoryStats.Stats != nil {
if currentMem, ok := statsJSON.MemoryStats.Stats["anon"]; ok {
log.Println(currentMem)
if currentMem > *maxMem {
*maxMem = currentMem
}