Skip to content

Commit

Permalink
Update generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Jul 25, 2024
1 parent 91e91f4 commit 8bbe7c1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,9 @@ GoldenKitchenSinkLogging::AsyncStreamingRead(
::google::cloud::internal::AsyncStreamingReadRpcLogging<google::test::admin::database::v1::Response>;

auto request_id = google::cloud::internal::RequestIdForLogging();
GCP_LOG(DEBUG) << __func__ << "(" << request_id << ")";
google::cloud::internal::LogRequest(
__func__, request_id,
google::cloud::internal::DebugString(request, tracing_options_));
auto stream = child_->AsyncStreamingRead(
cq, std::move(context), std::move(options), request);
if (stream_logging_) {
Expand Down
12 changes: 9 additions & 3 deletions google/cloud/bigtable/internal/bigtable_logging_decorator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,9 @@ BigtableLogging::AsyncReadRows(
google::bigtable::v2::ReadRowsResponse>;

auto request_id = google::cloud::internal::RequestIdForLogging();
GCP_LOG(DEBUG) << __func__ << "(" << request_id << ")";
google::cloud::internal::LogRequest(
__func__, request_id,
google::cloud::internal::DebugString(request, tracing_options_));
auto stream = child_->AsyncReadRows(cq, std::move(context),
std::move(options), request);
if (stream_logging_) {
Expand All @@ -215,7 +217,9 @@ BigtableLogging::AsyncSampleRowKeys(
google::bigtable::v2::SampleRowKeysResponse>;

auto request_id = google::cloud::internal::RequestIdForLogging();
GCP_LOG(DEBUG) << __func__ << "(" << request_id << ")";
google::cloud::internal::LogRequest(
__func__, request_id,
google::cloud::internal::DebugString(request, tracing_options_));
auto stream = child_->AsyncSampleRowKeys(cq, std::move(context),
std::move(options), request);
if (stream_logging_) {
Expand Down Expand Up @@ -254,7 +258,9 @@ BigtableLogging::AsyncMutateRows(
google::bigtable::v2::MutateRowsResponse>;

auto request_id = google::cloud::internal::RequestIdForLogging();
GCP_LOG(DEBUG) << __func__ << "(" << request_id << ")";
google::cloud::internal::LogRequest(
__func__, request_id,
google::cloud::internal::DebugString(request, tracing_options_));
auto stream = child_->AsyncMutateRows(cq, std::move(context),
std::move(options), request);
if (stream_logging_) {
Expand Down
4 changes: 3 additions & 1 deletion google/cloud/storage/internal/storage_logging_decorator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,9 @@ StorageLogging::AsyncReadObject(
google::storage::v2::ReadObjectResponse>;

auto request_id = google::cloud::internal::RequestIdForLogging();
GCP_LOG(DEBUG) << __func__ << "(" << request_id << ")";
google::cloud::internal::LogRequest(
__func__, request_id,
google::cloud::internal::DebugString(request, tracing_options_));
auto stream = child_->AsyncReadObject(cq, std::move(context),
std::move(options), request);
if (stream_logging_) {
Expand Down

0 comments on commit 8bbe7c1

Please sign in to comment.