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