refactor: remove debug print statements from CodiciToProcessVideos function
This commit is contained in:
parent
ca4a9d7bf4
commit
3a51275c9f
1 changed files with 1 additions and 8 deletions
|
|
@ -307,10 +307,7 @@ func CodiciToProcessVideos(annunci *typesdefs.AnnunciXML) ([]string, error) {
|
|||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to list bucket: %w", err)
|
||||
}
|
||||
fmt.Println("Current bucket state items:", len(currentBucketState))
|
||||
for _, item := range currentBucketState {
|
||||
fmt.Println(" - ", item.OriginalName, " (ID:", item.ID+")")
|
||||
}
|
||||
|
||||
//make a list of bucket ids
|
||||
bucketIdsMap := make(map[string]bool)
|
||||
for _, item := range currentBucketState {
|
||||
|
|
@ -321,10 +318,6 @@ func CodiciToProcessVideos(annunci *typesdefs.AnnunciXML) ([]string, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
fmt.Println("DB videos items:", len(db_videos))
|
||||
for _, item := range db_videos {
|
||||
fmt.Println(" - ", item.Video, " (Codice:", item.Codice+")")
|
||||
}
|
||||
|
||||
dbVideosMap := make(map[string][]videRef) // Convert slice to map for faster lookup
|
||||
for _, ref := range db_videos {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue