[TeamTalk 233]: [769] trunk/TeamTalk/Agents/TeamTalkBackend: Minor debug statements for launching processes in pythia.

tk@edam.speech.cs.cmu.edu tk at edam.speech.cs.cmu.edu
Mon Sep 24 01:05:14 EDT 2007


An HTML attachment was scrubbed...
URL: http://mailman.srv.cs.cmu.edu/pipermail/teamtalk-developers/attachments/20070924/6cb9fb8f/attachment.html
-------------- next part --------------
Modified: trunk/TeamTalk/Agents/TeamTalkBackend/TeamTalkBackend.vcproj
===================================================================
--- trunk/TeamTalk/Agents/TeamTalkBackend/TeamTalkBackend.vcproj	2007-09-24 04:59:03 UTC (rev 768)
+++ trunk/TeamTalk/Agents/TeamTalkBackend/TeamTalkBackend.vcproj	2007-09-24 05:05:13 UTC (rev 769)
@@ -231,10 +231,6 @@
 			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
 			>
 		</Filter>
-		<File
-			RelativePath=".\ReadMe.txt"
-			>
-		</File>
 	</Files>
 	<Globals>
 	</Globals>

Modified: trunk/TeamTalk/Agents/TeamTalkBackend/agent.cpp
===================================================================
--- trunk/TeamTalk/Agents/TeamTalkBackend/agent.cpp	2007-09-24 04:59:03 UTC (rev 768)
+++ trunk/TeamTalk/Agents/TeamTalkBackend/agent.cpp	2007-09-24 05:05:13 UTC (rev 769)
@@ -35,6 +35,7 @@
   ostringstream cmd, title;
   cmd << HUB << " -verbosity 3 -pgm_file " << cfilename;
   title << uppername << " Hub";
+  debug << "sending to pythia: " << cmd.str() << endl;
   Pythia::Message(cmd.str(), title.str()).send("localhost");
 }
 
@@ -50,6 +51,7 @@
   ostringstream cmd, title;
   cmd << HELIOS << " -port " << iHeliosPort << " -config " << cfilename;
   title << uppername << " Helios";
+  debug << "sending to pythia: " << cmd.str() << endl;
   Pythia::Message(cmd.str(), title.str()).send("localhost");
 }
 
@@ -79,6 +81,7 @@
   ostringstream cmd, title;
   cmd << DM << " -maxconns 6 -config " << cfilename;
   title << uppername << " DM";
+  debug << "sending to pythia: " << cmd.str() << endl;
   Pythia::Message(cmd.str(), title.str()).send("localhost");
 }
 


More information about the TeamTalk-developers mailing list