diff options
author | Melanie Thielker | 2008-10-02 15:36:10 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-02 15:36:10 +0000 |
commit | 8963522aab4a2cf1bc9180e7e11284dec1295582 (patch) | |
tree | 10f76e9891cbbdd3bf63d1090c1f6a8703a46463 /OpenSim/Grid/UserServer/UserLoginService.cs | |
parent | Square hollow size in cylinder meshes were a little too small - fixed. (diff) | |
download | opensim-SC-8963522aab4a2cf1bc9180e7e11284dec1295582.zip opensim-SC-8963522aab4a2cf1bc9180e7e11284dec1295582.tar.gz opensim-SC-8963522aab4a2cf1bc9180e7e11284dec1295582.tar.bz2 opensim-SC-8963522aab4a2cf1bc9180e7e11284dec1295582.tar.xz |
Mantis #2314
Thank you, sacha magne, for a patch to add login level and message
commands to the user server
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 | { |