From 3dbe4fb4ae9f210b540f7a9668e4dda10d17ff6b Mon Sep 17 00:00:00 2001 From: Haoyu Zhang Date: Fri, 20 Dec 2019 11:34:09 -0800 Subject: [PATCH] Minor tweaks on logging format and verbosity in process function library runtime. PiperOrigin-RevId: 286613321 Change-Id: Ifd2c509243daba2be3be035c198ff84ec0378b9a --- .../core/common_runtime/process_function_library_runtime.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/core/common_runtime/process_function_library_runtime.cc b/tensorflow/core/common_runtime/process_function_library_runtime.cc index 7bd5d09be97..671f0672749 100644 --- a/tensorflow/core/common_runtime/process_function_library_runtime.cc +++ b/tensorflow/core/common_runtime/process_function_library_runtime.cc @@ -843,7 +843,7 @@ Status ProcessFunctionLibraryRuntime::InstantiateMultiDevice( auto attrs = AttrSlice(&shard.attr()); VLOG(1) << "Start instantiating component function " << unique_name << " on device " << target; - VLOG(2) << DebugString(shard); + VLOG(4) << DebugString(shard); auto* component_handle = new FunctionLibraryRuntime::Handle; auto done = [this, status, unique_name, comp_data, component_handle, @@ -851,7 +851,7 @@ Status ProcessFunctionLibraryRuntime::InstantiateMultiDevice( status->Update(s); VLOG(1) << "Finished instantiating component function " << unique_name - << "with handle " << *component_handle << " status: " << s; + << " with handle " << *component_handle << " status: " << s; if (status->ok()) { { mutex_lock l(mu_);