Skip to content

Commit

Permalink
chore(internal/gapicgen): fix print to not panic (#6583)
Browse files Browse the repository at this point in the history
  • Loading branch information
codyoss committed Sep 2, 2022
1 parent a6004e7 commit f8a307c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/gapicgen/generator/genproto.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (g *GenprotoGenerator) Regen(ctx context.Context) error {
return g.protoc(fn, grpc)
})
} else {
log.Panicf("skipping, %q has been migrated", pkg)
log.Printf("skipping, %q has been migrated", pkg)
}
}
if err := grp.Wait(); err != nil {
Expand Down

0 comments on commit f8a307c

Please sign in to comment.