From a6407559883772e720399310fb6fa2f684f00679 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 3 Feb 2021 10:17:44 -0800 Subject: [PATCH] Reduce verbosity in a util function. PiperOrigin-RevId: 355424158 Change-Id: I6b1a630bb280cde2f73c28aa3b674cb5cb6a58f8 --- tensorflow/core/tpu/kernels/tpu_op_util.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tensorflow/core/tpu/kernels/tpu_op_util.cc b/tensorflow/core/tpu/kernels/tpu_op_util.cc index dd4509e4987..b33ddab318a 100644 --- a/tensorflow/core/tpu/kernels/tpu_op_util.cc +++ b/tensorflow/core/tpu/kernels/tpu_op_util.cc @@ -74,7 +74,8 @@ std::string CreateConfigPrefix(const TPUCompileMetadataProto& metadata) { uint64 CreateFingerprintWithNameAndShapes( uint64 name, const std::vector& shapes) { std::string shape_prefix = CreateShapePrefix(shapes); - LOG(INFO) << "name: " << name << ", shape_prefix: " << shape_prefix; + VLOG(2) << "CreateFingerprintWithNameAndShapes, name: " << name + << ", shape_prefix: " << shape_prefix; return TpuCompileInterface::Get()->FingerprintString( absl::StrCat(name, "_", shape_prefix)); }