diff options
author | Justin Clark-Casey (justincc) | 2014-05-27 23:18:33 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-05-27 23:18:33 +0100 |
commit | c32ccfb520cb979988c6bbdc195b0977cced3d06 (patch) | |
tree | c38be77434614a3f8cfe4ce7eb0395ec16f1a585 | |
parent | Make RegionReady login disabled during initialization message a console messa... (diff) | |
download | opensim-SC_OLD-c32ccfb520cb979988c6bbdc195b0977cced3d06.zip opensim-SC_OLD-c32ccfb520cb979988c6bbdc195b0977cced3d06.tar.gz opensim-SC_OLD-c32ccfb520cb979988c6bbdc195b0977cced3d06.tar.bz2 opensim-SC_OLD-c32ccfb520cb979988c6bbdc195b0977cced3d06.tar.xz |
minor: Comment out 2 error level debugging message in authentication code
-rw-r--r-- | OpenSim/Server/Handlers/Authentication/AuthenticationServerPostHandler.cs | 2 | ||||
-rw-r--r-- | OpenSim/Services/Connectors/Authentication/AuthenticationServicesConnector.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Server/Handlers/Authentication/AuthenticationServerPostHandler.cs b/OpenSim/Server/Handlers/Authentication/AuthenticationServerPostHandler.cs index e258dde..5d65f67 100644 --- a/OpenSim/Server/Handlers/Authentication/AuthenticationServerPostHandler.cs +++ b/OpenSim/Server/Handlers/Authentication/AuthenticationServerPostHandler.cs | |||
@@ -74,7 +74,7 @@ namespace OpenSim.Server.Handlers.Authentication | |||
74 | protected override byte[] ProcessRequest(string path, Stream request, | 74 | protected override byte[] ProcessRequest(string path, Stream request, |
75 | IOSHttpRequest httpRequest, IOSHttpResponse httpResponse) | 75 | IOSHttpRequest httpRequest, IOSHttpResponse httpResponse) |
76 | { | 76 | { |
77 | m_log.Error("[XXX]: Authenticating..."); | 77 | // m_log.Error("[XXX]: Authenticating..."); |
78 | string[] p = SplitParams(path); | 78 | string[] p = SplitParams(path); |
79 | 79 | ||
80 | if (p.Length > 0) | 80 | if (p.Length > 0) |
diff --git a/OpenSim/Services/Connectors/Authentication/AuthenticationServicesConnector.cs b/OpenSim/Services/Connectors/Authentication/AuthenticationServicesConnector.cs index 56b6434..c8a4912 100644 --- a/OpenSim/Services/Connectors/Authentication/AuthenticationServicesConnector.cs +++ b/OpenSim/Services/Connectors/Authentication/AuthenticationServicesConnector.cs | |||
@@ -108,7 +108,7 @@ namespace OpenSim.Services.Connectors | |||
108 | 108 | ||
109 | public bool Verify(UUID principalID, string token, int lifetime) | 109 | public bool Verify(UUID principalID, string token, int lifetime) |
110 | { | 110 | { |
111 | m_log.Error("[XXX]: Verify"); | 111 | // m_log.Error("[XXX]: Verify"); |
112 | Dictionary<string, object> sendData = new Dictionary<string, object>(); | 112 | Dictionary<string, object> sendData = new Dictionary<string, object>(); |
113 | sendData["LIFETIME"] = lifetime.ToString(); | 113 | sendData["LIFETIME"] = lifetime.ToString(); |
114 | sendData["PRINCIPAL"] = principalID.ToString(); | 114 | sendData["PRINCIPAL"] = principalID.ToString(); |