diff options
Diffstat (limited to 'OpenSim/Tools/pCampBot')
-rw-r--r-- | OpenSim/Tools/pCampBot/Bot.cs | 2 | ||||
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Tools/pCampBot/Bot.cs b/OpenSim/Tools/pCampBot/Bot.cs index 3c07a7c..c743568 100644 --- a/OpenSim/Tools/pCampBot/Bot.cs +++ b/OpenSim/Tools/pCampBot/Bot.cs | |||
@@ -333,7 +333,7 @@ namespace pCampBot | |||
333 | // client | 333 | // client |
334 | CreateLibOmvClient(); | 334 | CreateLibOmvClient(); |
335 | 335 | ||
336 | if (Client.Network.Login(FirstName, LastName, Password, "pCampBot", StartLocation, "Your name")) | 336 | if (Client.Network.Login(FirstName, LastName, Password, "pCampBot", StartLocation, "pCampBot")) |
337 | { | 337 | { |
338 | ConnectionState = ConnectionState.Connected; | 338 | ConnectionState = ConnectionState.Connected; |
339 | 339 | ||
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 | ||