aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/op.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-01-17 23:31:46 -0800
committerGravatar Manjunath Kudlur <keveman@gmail.com>2016-01-18 12:22:23 -0800
commita84a81a7379507f8fcdd0d6118afc2d5044d159e (patch)
tree4059e7f6c5b8893ef6d637293ebc55bcbbfcf548 /tensorflow/core/framework/op.cc
parent6f62e435ab6c36dfdfdef1acd580b5f278f6723c (diff)
* Supports nested function calls;
* Supports uses python class method as a tf function prototype. Derives the generate function name from the class name and the method name. * Changes one LOG(INFO) to VLOG(1), which is too verbose. Change: 112384148
Diffstat (limited to 'tensorflow/core/framework/op.cc')
-rw-r--r--tensorflow/core/framework/op.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/framework/op.cc b/tensorflow/core/framework/op.cc
index bbe722e329..6d42353630 100644
--- a/tensorflow/core/framework/op.cc
+++ b/tensorflow/core/framework/op.cc
@@ -60,7 +60,7 @@ const OpDef* OpRegistry::LookUp(const string& op_type_name,
if (op_def == nullptr) {
status->Update(
errors::NotFound("Op type not registered '", op_type_name, "'"));
- LOG(INFO) << status->ToString();
+ VLOG(1) << status->ToString();
static bool first_unregistered = true;
if (first_unregistered) {
OpList op_list;