[Groonga-commit] groonga/grnxx at d712292 [master] Remove logging for debug.

Back to archive index

susumu.yata null+****@clear*****
Fri Sep 5 18:02:31 JST 2014


susumu.yata	2014-09-05 18:02:31 +0900 (Fri, 05 Sep 2014)

  New Revision: d712292a98af657652020c11cc8186c829dd37de
  https://github.com/groonga/grnxx/commit/d712292a98af657652020c11cc8186c829dd37de

  Message:
    Remove logging for debug.

  Modified files:
    lib/grnxx/expression.cpp

  Modified: lib/grnxx/expression.cpp (+0 -6)
===================================================================
--- lib/grnxx/expression.cpp    2014-09-05 17:48:03 +0900 (75bb1ff)
+++ lib/grnxx/expression.cpp    2014-09-05 18:02:31 +0900 (410859c)
@@ -3679,28 +3679,22 @@ bool ExpressionBuilder::push_operator(Error *error,
 
 bool ExpressionBuilder::begin_subexpression(Error *error) {
   const Node *latest_node = builders_.back()->latest_node();
-std::cerr << "LINE: " << __LINE__ << std::endl;
   if (!latest_node) {
     GRNXX_ERROR_SET(error, INVALID_OPERAND, "Not enough operands");
     return false;
   }
-std::cerr << "LINE: " << __LINE__ << std::endl;
   if (!latest_node->ref_table()) {
     GRNXX_ERROR_SET(error, INVALID_OPERAND, "Invalid data type");
     return false;
   }
-std::cerr << "LINE: " << __LINE__ << std::endl;
   unique_ptr<Builder> subexpression_builder =
       Builder::create(error, latest_node->ref_table());
-std::cerr << "LINE: " << __LINE__ << std::endl;
   if (!subexpression_builder) {
     return false;
   }
-std::cerr << "LINE: " << __LINE__ << std::endl;
   if (!builders_.push_back(error, std::move(subexpression_builder))) {
     return false;
   }
-std::cerr << "LINE: " << __LINE__ << std::endl;
   return true;
 }
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index