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();