Compare commits

...

1 Commits

Author SHA1 Message Date
core-be 8dc9549dbb fix(handlers): add missing log import to container_files.go
log.Printf is called at line 35 but "log" was not in the import block,
causing a compile failure.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-15 05:46:57 +00:00
@@ -6,6 +6,7 @@ import (
"context"
"fmt"
"io"
"log"
"path/filepath"
"strings"