diff --git a/generator/integration_tests/golden/v1/internal/golden_kitchen_sink_logging_decorator.cc b/generator/integration_tests/golden/v1/internal/golden_kitchen_sink_logging_decorator.cc index 5862f1bd792e1..0228f1956fbb9 100644 --- a/generator/integration_tests/golden/v1/internal/golden_kitchen_sink_logging_decorator.cc +++ b/generator/integration_tests/golden/v1/internal/golden_kitchen_sink_logging_decorator.cc @@ -244,7 +244,9 @@ GoldenKitchenSinkLogging::AsyncStreamingRead( ::google::cloud::internal::AsyncStreamingReadRpcLogging; 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_) { diff --git a/google/cloud/bigtable/internal/bigtable_logging_decorator.cc b/google/cloud/bigtable/internal/bigtable_logging_decorator.cc index 0d3bedfb8b9d9..e393db2ff7c96 100644 --- a/google/cloud/bigtable/internal/bigtable_logging_decorator.cc +++ b/google/cloud/bigtable/internal/bigtable_logging_decorator.cc @@ -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_) { @@ -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_) { @@ -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_) { diff --git a/google/cloud/storage/internal/storage_logging_decorator.cc b/google/cloud/storage/internal/storage_logging_decorator.cc index 988690857eea1..07a6797ec1b83 100644 --- a/google/cloud/storage/internal/storage_logging_decorator.cc +++ b/google/cloud/storage/internal/storage_logging_decorator.cc @@ -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_) {