Skip to content

Commit ba9b76d

Browse files
committed
Remove useless logging
1 parent defb3b5 commit ba9b76d

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/pkg/cli/client/byoc/gcp/byoc.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,6 @@ func (b *ByocGcp) QueryLogs(ctx context.Context, req *defangv1.TailRequest) (cli
578578
}
579579

580580
func (b *ByocGcp) getLogStream(ctx context.Context, gcpLogsClient GcpLogsClient, req *defangv1.TailRequest) (client.ServerStream[defangv1.TailResponse], error) {
581-
fmt.Printf("Getting logs for project %s ===========\n", req.Project)
582581
logStream, err := NewLogStream(ctx, gcpLogsClient, req.Services)
583582
if err != nil {
584583
return nil, err

src/pkg/cli/compose/fixup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func FixupServices(ctx context.Context, provider client.Provider, project *compo
3030
}
3131
}
3232

33-
oldName := project.Name
33+
oldName := project.Name
3434
project.Name = NormalizeProjectName(project.Name)
3535
if project.Name != oldName {
3636
term.Debugf("normalized project name %q -> %q", oldName, project.Name)

0 commit comments

Comments
 (0)