Skip to content

Commit

Permalink
rewritten init time logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gmgigi96 committed Nov 3, 2023
1 parent 53829bd commit 1e92086
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkg/eosclient/eosgrpc/eosgrpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,14 @@ type Client struct {

// Create and connect a grpc eos Client.
func newgrpc(ctx context.Context, log *zerolog.Logger, opt *Options) (erpc.EosClient, error) {
log.Info().Str("Setting up GRPC towards ", "'"+opt.GrpcURI+"'").Msg("")
log.Debug().Msgf("Setting up GRPC towards '%s'", opt.GrpcURI)

conn, err := grpc.Dial(opt.GrpcURI, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
log.Warn().Str("Error connecting to ", "'"+opt.GrpcURI+"' ").Str("err", err.Error()).Msg("")
log.Warn().Err(err).Msgf("Error connecting to '%s'", opt.GrpcURI)
}

log.Debug().Str("Going to ping ", "'"+opt.GrpcURI+"' ").Msg("")
log.Debug().Msgf("Going to ping '%s'", opt.GrpcURI)
ecl := erpc.NewEosClient(conn)
// If we can't ping... just print warnings. In the case EOS is down, grpc will take care of
// connecting later
Expand All @@ -155,13 +155,13 @@ func newgrpc(ctx context.Context, log *zerolog.Logger, opt *Options) (erpc.EosCl
prq.Message = []byte("hi this is a ping from reva")
prep, err := ecl.Ping(ctx, prq)
if err != nil {
log.Warn().Str("Could not ping to ", "'"+opt.GrpcURI+"' ").Str("err", err.Error()).Msg("")
log.Warn().Err(err).Msgf("Could not ping to '%s'", opt.GrpcURI)
}

if prep == nil {
log.Warn().Str("Could not ping to ", "'"+opt.GrpcURI+"' ").Str("nil response", "").Msg("")
log.Warn().Msgf("Could not ping to '%s': nil response", opt.GrpcURI)
}
log.Debug().Str("Ping to ", "'"+opt.GrpcURI+"' succeeded").Msg("")
log.Debug().Msgf("Ping to '%s' succeeded", opt.GrpcURI)

return ecl, nil
}
Expand All @@ -170,7 +170,7 @@ func newgrpc(ctx context.Context, log *zerolog.Logger, opt *Options) (erpc.EosCl
func New(ctx context.Context, opt *Options, httpOpts *HTTPOptions) (*Client, error) {
log := appctx.GetLogger(ctx)

log.Debug().Str("Creating new eosgrpc client. opt: ", "'"+fmt.Sprintf("%#v", opt)+"' ").Msg("")
log.Debug().Interface("options", opt).Msgf("Creating new eosgrpc client")

opt.init()
httpcl, err := NewEOSHTTPClient(httpOpts)
Expand Down

0 comments on commit 1e92086

Please sign in to comment.