Reduce log output for each step in direct_session, added previously, from LOG(INFO) to VLOG(1).

Change: 115630069
This commit is contained in:
A. Unique TensorFlower 2016-02-25 18:56:06 -08:00 committed by TensorFlower Gardener
parent 657d5fecbf
commit 7dd05309b3

View File

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