Merge pull request #2925 from halseth/newaddress-log-level

[trivial] rpcserver: demote newaddress log to debug, log addr type
This commit is contained in:
Olaoluwa Osuntokun 2019-04-10 17:07:22 -07:00 committed by GitHub
commit de621246a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
}