Skip to content
This repository was archived by the owner on Nov 5, 2019. It is now read-only.

Commit 8fb3179

Browse files
committed
remove extraneous logging
1 parent 684197c commit 8fb3179

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

repositories/repository_requests.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package repositories
22

33
import (
4-
"fmt"
54
"github.com/archivers-space/archive"
65
"github.com/archivers-space/errors"
76
)
@@ -15,7 +14,6 @@ type RepositoryListParams struct {
1514
}
1615

1716
func (r RepositoryRequests) List(p *RepositoryListParams, res *[]*archive.DataRepo) error {
18-
fmt.Println("list repositories", p)
1917
repos := make([]*archive.DataRepo, len(Repositories))
2018
for i, repo := range Repositories {
2119
repos[i] = repo.DataRepo()
@@ -30,7 +28,6 @@ type RepositoryGetParams struct {
3028
}
3129

3230
func (r RepositoryRequests) Get(p *RepositoryGetParams, res *archive.DataRepo) error {
33-
fmt.Println("get repository", p.Id)
3431
for _, repo := range Repositories {
3532
if repo.GetId() == p.Id {
3633
*res = *repo.DataRepo()

0 commit comments

Comments
 (0)