string format arguments in wrong order

0.7.4-extended
SignpostMarv 2012-10-01 11:26:11 +01:00 committed by Justin Clark-Casey (justincc)
parent 7a5782c3e3
commit fa16f132e3
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ namespace OpenSim.Services.LLLoginService
{
m_log.InfoFormat(
"[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;
}