From 0799f8886a1a80d0f9cb6970d87e7f08785cbcbc Mon Sep 17 00:00:00 2001 From: Micah Kornfield Date: Wed, 7 Oct 2020 21:37:20 -0700 Subject: [PATCH] ARROW-10229: remove errant log line --- cpp/src/parquet/arrow/schema.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpp/src/parquet/arrow/schema.cc b/cpp/src/parquet/arrow/schema.cc index 505fa5822ae..91b2f451314 100644 --- a/cpp/src/parquet/arrow/schema.cc +++ b/cpp/src/parquet/arrow/schema.cc @@ -822,8 +822,6 @@ Result ApplyOriginalStorageMetadata(const Field& origin_field, if (num_children > 0 && origin_type->num_fields() == num_children) { DCHECK_EQ(static_cast(inferred->children.size()), num_children); const auto factory = GetNestedFactory(*origin_type, *inferred_type); - ARROW_LOG(INFO) << "Nested type: origin = " << origin_type->ToString() - << ", inferred = " << inferred_type->ToString(); if (factory) { // The type may be modified (e.g. LargeList) while the children stay the same modified |= origin_type->id() != inferred_type->id();