string format arguments in wrong order

connector_plugin
SignpostMarv 2012-10-01 11:26:11 +01:00 committed by Justin Clark-Casey (justincc)
parent 210f227fe6
commit e81e19a3b4
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ namespace OpenSim.Services.LLLoginService
{ {
m_log.InfoFormat( m_log.InfoFormat(
"[LLOGIN SERVICE]: Login failed for {0} {1}, reason: user level is {2} but minimum login level is {3}", "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: user level is {2} but minimum login level is {3}",
firstName, lastName, m_MinLoginLevel, account.UserLevel); firstName, lastName, account.UserLevel, m_MinLoginLevel);
return LLFailedLoginResponse.LoginBlockedProblem; return LLFailedLoginResponse.LoginBlockedProblem;
} }