From: Junghoon Park Date: Thu, 22 Mar 2018 01:42:19 +0000 (+0900) Subject: Remove printing the input file X-Git-Tag: accepted/tizen/unified/20180322.145033~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F77%2F173477%2F1;p=platform%2Fcore%2Fappfw%2Ftidl.git Remove printing the input file Change-Id: Ie651b669ae59e0bbb11b33ce123fe52e5f3bfeea Signed-off-by: Junghoon Park --- diff --git a/idlc/parser.cc b/idlc/parser.cc index 413eaa6..e335d30 100644 --- a/idlc/parser.cc +++ b/idlc/parser.cc @@ -50,9 +50,6 @@ std::shared_ptr 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; }