Skip to content

Commit

Permalink
removes unnecesary and verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
amenocal committed Oct 28, 2024
1 parent c17b910 commit 2b53fd0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions cmd/byRepos.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ package cmd

import (
"fmt"
"log"
"os"

"github.com/mona-actions/gh-migrate-teams/pkg/sync"
Expand Down Expand Up @@ -54,7 +53,6 @@ var byReposCmd = &cobra.Command{

func init() {

log.Println("byRepos init")
syncCmd.AddCommand(byReposCmd)

// Here you will define your flags and configuration settings.
Expand Down
2 changes: 0 additions & 2 deletions pkg/sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,8 @@ func SyncTeamsByRepo() {
for _, team := range teams {
// Map members
if os.Getenv("GHMT_MAPPING_FILE") != "" {
log.Println("trying to map")
team = mapMembers(team)
}
log.Println("before create team", team)
team.CreateTeam()
}
createTeamsSpinnerSuccess.Success()
Expand Down

0 comments on commit 2b53fd0

Please sign in to comment.