diff options
Diffstat (limited to 'OpenSim/Grid/UserServer/UserLoginService.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index bfa454c..fa3cfbd 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -65,6 +65,18 @@ namespace OpenSim.Grid.UserServer | |||
65 | m_config = config; | 65 | m_config = config; |
66 | m_inventoryService = inventoryService; | 66 | m_inventoryService = inventoryService; |
67 | } | 67 | } |
68 | public void setloginlevel(int level) | ||
69 | { | ||
70 | m_minLoginLevel = level; | ||
71 | m_log.InfoFormat("[GRID] Login Level set to {0} ", level); | ||
72 | |||
73 | } | ||
74 | public void setwelcometext(string text) | ||
75 | { | ||
76 | m_welcomeMessage = text; | ||
77 | m_log.InfoFormat("[GRID] Login text set to {0} ", text); | ||
78 | |||
79 | } | ||
68 | 80 | ||
69 | public override void LogOffUser(UserProfileData theUser, string message) | 81 | public override void LogOffUser(UserProfileData theUser, string message) |
70 | { | 82 | { |