Skip to content

Commit

Permalink
debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkoo committed Aug 27, 2024
1 parent 04b80f8 commit 76d37f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/list/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ func (s *ListService) gcpStorage() ([]match.MatchInfo, error) {
if err != nil {
log.Println("err when listing files in GCP storage bucket", err)
}
matches = append(matches, match.MatchInfo{DemoLink: attrs.Name, TeamA: attrs.Metadata["teamA"]})
log.Printf("got file: %+v", attrs)
matches = append(matches, match.MatchInfo{DemoLink: attrs.Name})
}

return matches, nil
Expand Down

0 comments on commit 76d37f7

Please sign in to comment.