Remove unneeded debug entries
This commit is contained in:
parent
eb6a1e56b8
commit
17ac8d7b74
1 changed files with 3 additions and 3 deletions
|
@ -619,7 +619,7 @@ namespace Bot
|
||||||
|
|
||||||
string eMe = e.Message;
|
string eMe = e.Message;
|
||||||
Dictionary<string, string> dstuf = new Dictionary<string, string>();
|
Dictionary<string, string> dstuf = new Dictionary<string, string>();
|
||||||
Log.debugf(true, "onChatRecv", new[] { e.Message });
|
//Log.debugf(true, "onChatRecv", new[] { e.Message });
|
||||||
|
|
||||||
dstuf.Add("type", "chat");
|
dstuf.Add("type", "chat");
|
||||||
string SRC = "";
|
string SRC = "";
|
||||||
|
@ -634,12 +634,12 @@ namespace Bot
|
||||||
|
|
||||||
foreach (IProgram P in g_ZPrograms)
|
foreach (IProgram P in g_ZPrograms)
|
||||||
{
|
{
|
||||||
Log.debug(JsonConvert.SerializeObject(dstuf));
|
//Log.debug(JsonConvert.SerializeObject(dstuf));
|
||||||
Thread X = new Thread(() => P.passArguments(JsonConvert.SerializeObject(dstuf)));
|
Thread X = new Thread(() => P.passArguments(JsonConvert.SerializeObject(dstuf)));
|
||||||
X.Name = "T_" + eMe;
|
X.Name = "T_" + eMe;
|
||||||
X.Start();
|
X.Start();
|
||||||
}
|
}
|
||||||
Log.debugf(false, "onChatRecv", new[] { "" });
|
//Log.debugf(false, "onChatRecv", new[] { "" });
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue