rpcserver: demote newaddress log to debug, log addr type

This commit is contained in:
Johan T. Halseth 2019-04-10 09:08:36 +02:00
parent 81bfebe7be
commit 0310d8f2b4
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -1082,7 +1082,7 @@ func (r *rpcServer) NewAddress(ctx context.Context,
}
}
rpcsLog.Infof("[newaddress] addr=%v", addr.String())
rpcsLog.Debugf("[newaddress] type=%v addr=%v", in.Type, addr.String())
return &lnrpc.NewAddressResponse{Address: addr.String()}, nil
}