Remove printing the input file 77/173477/1
authorJunghoon Park <jh9216.park@samsung.com>
Thu, 22 Mar 2018 01:42:19 +0000 (10:42 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Thu, 22 Mar 2018 01:42:19 +0000 (10:42 +0900)
Change-Id: Ie651b669ae59e0bbb11b33ce123fe52e5f3bfeea
Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
idlc/parser.cc

index 413eaa6..e335d30 100644 (file)
@@ -50,9 +50,6 @@ std::shared_ptr<Document> Parser::GetDoc() {
 }
 
 bool Parser::Parse(const std::string& input) {
-  std::cout << "[TIDL:Parser] input: " << std::endl
-    << input << std::endl;
-
   std::string in = input;
   error_ = false;
 
@@ -63,7 +60,6 @@ bool Parser::Parse(const std::string& input) {
     return false;
   }
 
-  std::cout << "[TIDL:Parser] OK" << std::endl;
   return true;
 }