From 7dd05309b379fd49677a5c795d95664895bb16ca Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 25 Feb 2016 18:56:06 -0800 Subject: [PATCH] Reduce log output for each step in direct_session, added previously, from LOG(INFO) to VLOG(1). Change: 115630069 --- tensorflow/core/common_runtime/direct_session.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/core/common_runtime/direct_session.cc b/tensorflow/core/common_runtime/direct_session.cc index ce6f77fcced..b5db0d19d2f 100644 --- a/tensorflow/core/common_runtime/direct_session.cc +++ b/tensorflow/core/common_runtime/direct_session.cc @@ -293,8 +293,8 @@ Status DirectSession::Run(const NamedTensorList& inputs, args.rendezvous = run_state.rendez; args.cancellation_manager = cancellation_manager_; args.runner = [this](Executor::Args::Closure c) { SchedClosure(c); }; - LOG(INFO) << "Step " << args.step_id << " is for handle " - << run_state_args.handle; + VLOG(1) << "Step " << args.step_id << " is for handle " + << run_state_args.handle; for (const auto& item : executors_and_keys->items) { item.executor->RunAsync(args, barrier->Get());