diff options
author | Oren Hurvitz | 2014-06-30 18:03:41 +0300 |
---|---|---|
committer | Oren Hurvitz | 2014-07-21 09:11:51 +0100 |
commit | 470161ae2ef67b18fa4432de144a6402a5075814 (patch) | |
tree | 0b1d4dc0b481c609dfbefc04fb1c84fdeb26ae80 /OpenSim/Tools/pCampBot/BotManager.cs | |
parent | In "show throttles", show the maximum drip rate. This shows whether a client ... (diff) | |
download | opensim-SC-470161ae2ef67b18fa4432de144a6402a5075814.zip opensim-SC-470161ae2ef67b18fa4432de144a6402a5075814.tar.gz opensim-SC-470161ae2ef67b18fa4432de144a6402a5075814.tar.bz2 opensim-SC-470161ae2ef67b18fa4432de144a6402a5075814.tar.xz |
Write some pCampBot messages to the log
Diffstat (limited to 'OpenSim/Tools/pCampBot/BotManager.cs')
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index 3647831..8abab1d 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -321,7 +321,7 @@ namespace pCampBot | |||
321 | 321 | ||
322 | private void ConnectBotsInternal(int botCount) | 322 | private void ConnectBotsInternal(int botCount) |
323 | { | 323 | { |
324 | MainConsole.Instance.OutputFormat( | 324 | m_log.InfoFormat( |
325 | "[BOT MANAGER]: Starting {0} bots connecting to {1}, location {2}, named {3} {4}_<n>", | 325 | "[BOT MANAGER]: Starting {0} bots connecting to {1}, location {2}, named {3} {4}_<n>", |
326 | botCount, | 326 | botCount, |
327 | m_loginUri, | 327 | m_loginUri, |
@@ -329,9 +329,9 @@ namespace pCampBot | |||
329 | m_firstName, | 329 | m_firstName, |
330 | m_lastNameStem); | 330 | m_lastNameStem); |
331 | 331 | ||
332 | MainConsole.Instance.OutputFormat("[BOT MANAGER]: Delay between logins is {0}ms", LoginDelay); | 332 | m_log.DebugFormat("[BOT MANAGER]: Delay between logins is {0}ms", LoginDelay); |
333 | MainConsole.Instance.OutputFormat("[BOT MANAGER]: BotsSendAgentUpdates is {0}", InitBotSendAgentUpdates); | 333 | m_log.DebugFormat("[BOT MANAGER]: BotsSendAgentUpdates is {0}", InitBotSendAgentUpdates); |
334 | MainConsole.Instance.OutputFormat("[BOT MANAGER]: InitBotRequestObjectTextures is {0}", InitBotRequestObjectTextures); | 334 | m_log.DebugFormat("[BOT MANAGER]: InitBotRequestObjectTextures is {0}", InitBotRequestObjectTextures); |
335 | 335 | ||
336 | int connectedBots = 0; | 336 | int connectedBots = 0; |
337 | 337 | ||