Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit 42ffb3d

Browse files
committed
chore: remove unnecessary logs
1 parent 0e934a3 commit 42ffb3d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pkg/client/metadata.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package client
33
import (
44
"encoding/json"
55
"fmt"
6-
"log/slog"
76
"os"
87
"path/filepath"
98
"strings"
@@ -45,8 +44,6 @@ func loadDirMetadata(dirPath string) (*Metadata, error) {
4544
return nil, fmt.Errorf("failed to unmarshal metadata file %s: %w", metadataPath, err)
4645
}
4746

48-
slog.Info("Loaded metadata", "path", metadataPath, "metadata", metadata.Metadata)
49-
5047
return metadata, nil
5148
}
5249

@@ -68,6 +65,5 @@ func findMetadata(path string, metadataStack []Metadata) (FileMetadata, error) {
6865
}
6966
}
7067

71-
slog.Debug("Found metadata", "path", path, "metadata", metadata)
7268
return metadata, nil
7369
}

0 commit comments

Comments
 (0)