diff options
Diffstat (limited to 'OpenSim/Framework/Communications/LoginService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 889b70a..3a68bfb 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -92,6 +92,11 @@ namespace OpenSim.Framework.UserManagement | |||
92 | string firstname = (string) requestData["first"]; | 92 | string firstname = (string) requestData["first"]; |
93 | string lastname = (string) requestData["last"]; | 93 | string lastname = (string) requestData["last"]; |
94 | 94 | ||
95 | if( requestData.Contains("version")) | ||
96 | { | ||
97 | string clientversion = (string)requestData["version"]; | ||
98 | MainLog.Instance.Verbose("LOGIN","Client Version " + clientversion + " for " + firstname + " " + lastname); | ||
99 | } | ||
95 | 100 | ||
96 | 101 | ||
97 | userProfile = GetTheUser(firstname, lastname); | 102 | userProfile = GetTheUser(firstname, lastname); |