From ae9c915ef46980bc1d5cc7dd9f4f08cbe671ba4f Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdhiser@gmail.com> Date: Wed, 14 Aug 2019 15:26:20 -0400 Subject: [PATCH] cleaned up debug output --- tools/protoc.py | 10 +++++----- turbo-rpc/SConscript | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/protoc.py b/tools/protoc.py index fa4fff0..51f1ca4 100755 --- a/tools/protoc.py +++ b/tools/protoc.py @@ -24,10 +24,10 @@ protocs = 'protoc' ProtocAction = SCons.Action.Action('$PROTOCCOM', '$PROTOCCOMSTR') def ProtocEmitter(target, source, env): - print "Pre-Emitter PROTOC SOURCE:", [str(s) for s in source] - print "Pre-Emitter PROTOC TARGET:", [str(s) for s in target] + #print "Pre-Emitter PROTOC SOURCE:", [str(s) for s in source] + #print "Pre-Emitter PROTOC TARGET:", [str(s) for s in target] for src in source: - print "src="+ str(src) + # print "src="+ str(src) modulename = os.path.splitext(str(src))[0] if env['PROTOCOUTDIR']: @@ -40,8 +40,8 @@ def ProtocEmitter(target, source, env): except KeyError: pass - print "Post-Emitter PROTOC SOURCE:", [str(s) for s in source] - print "Post-Emitter PROTOC TARGET:", [str(s) for s in target] + #print "Post-Emitter PROTOC SOURCE:", [str(s) for s in source] + #print "Post-Emitter PROTOC TARGET:", [str(s) for s in target] return target, source diff --git a/turbo-rpc/SConscript b/turbo-rpc/SConscript index 95a3832..1c472fd 100644 --- a/turbo-rpc/SConscript +++ b/turbo-rpc/SConscript @@ -26,7 +26,7 @@ env.Append(CXXFLAGS=" -g -fmax-errors=2 -Wall -Werror -std=c++11" ) proto_files = env.protoc( [], "turbo.proto") for file in proto_files: - print "file="+str(file); + # print "file="+str(file); if str(file).endswith(".h"): inst = env.Install("$TURBO_HOME/include/turbo-rpc/", file); ret = ret + inst -- GitLab