* minor: Eliminate unused paramter in LocalUserServices constructors

This commit is contained in:
Justin Clarke Casey
2008-11-28 15:40:44 +00:00
parent 0862627b34
commit 7b49c711e9
5 changed files with 9 additions and 13 deletions

View File

@@ -72,12 +72,12 @@ namespace OpenSim.Grid.UserServer
public void setloginlevel(int level)
{
m_minLoginLevel = level;
m_log.InfoFormat("[GRID] Login Level set to {0} ", level);
m_log.InfoFormat("[GRID]: Login Level set to {0} ", level);
}
public void setwelcometext(string text)
{
m_welcomeMessage = text;
m_log.InfoFormat("[GRID] Login text set to {0} ", text);
m_log.InfoFormat("[GRID]: Login text set to {0} ", text);
}
public override void LogOffUser(UserProfileData theUser, string message)