Skip to content

Commit

Permalink
Merge pull request #1684 from onflow/cf/remove-prints
Browse files Browse the repository at this point in the history
Remove prints
  • Loading branch information
chasefleming authored Jul 23, 2024
2 parents ac8e65a + d033be4 commit abf22bc
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions internal/super/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,6 @@ func (g *Generator) generate(templateType, templateName, name, account string, d
return fmt.Errorf("invalid template type: %s", templateType)
}

fmt.Println("account: ", account)

directoryWithBasePath := filepath.Join(rootDir, basePath, account)
filenameWithBasePath := filepath.Join(rootDir, basePath, account, filename)
relativeFilenameWithBasePath := filepath.Join(basePath, account, filename)
Expand Down Expand Up @@ -383,9 +381,6 @@ func (g *Generator) generate(templateType, templateName, name, account string, d
}

if templateType == ContractType {
fmt.Println("directoryWithBasePath: ", directoryWithBasePath)
fmt.Println("filenameWithBasePath: ", filenameWithBasePath)
fmt.Println("relativeFilenameWithBasePath: ", relativeFilenameWithBasePath)
err := g.updateContractsState(name, relativeFilenameWithBasePath)
if err != nil {
return err
Expand Down

0 comments on commit abf22bc

Please sign in to comment.