Skip to content
Snippets Groups Projects
Commit ae9c915e authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

cleaned up debug output

parent 515c6011
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment