Skip to content

Commit f8a307c

Browse files
authored
chore(internal/gapicgen): fix print to not panic (#6583)
1 parent a6004e7 commit f8a307c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/gapicgen/generator/genproto.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func (g *GenprotoGenerator) Regen(ctx context.Context) error {
140140
return g.protoc(fn, grpc)
141141
})
142142
} else {
143-
log.Panicf("skipping, %q has been migrated", pkg)
143+
log.Printf("skipping, %q has been migrated", pkg)
144144
}
145145
}
146146
if err := grp.Wait(); err != nil {

0 commit comments

Comments
 (0)