diff options
-rw-r--r-- | OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs index b20f8f5..512ac4f 100644 --- a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs +++ b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs | |||
@@ -38,7 +38,7 @@ namespace OpenSim.Framework.ServiceAuth | |||
38 | { | 38 | { |
39 | public class BasicHttpAuthentication : IServiceAuth | 39 | public class BasicHttpAuthentication : IServiceAuth |
40 | { | 40 | { |
41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 41 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | 42 | ||
43 | public string Name { get { return "BasicHttp"; } } | 43 | public string Name { get { return "BasicHttp"; } } |
44 | 44 | ||
@@ -61,7 +61,7 @@ namespace OpenSim.Framework.ServiceAuth | |||
61 | byte[] encData_byte = Util.UTF8.GetBytes(str); | 61 | byte[] encData_byte = Util.UTF8.GetBytes(str); |
62 | 62 | ||
63 | m_CredentialsB64 = Convert.ToBase64String(encData_byte); | 63 | m_CredentialsB64 = Convert.ToBase64String(encData_byte); |
64 | m_log.DebugFormat("[HTTP BASIC AUTH]: {0} {1} [{2}]", m_Username, m_Password, section); | 64 | // m_log.DebugFormat("[HTTP BASIC AUTH]: {0} {1} [{2}]", m_Username, m_Password, section); |
65 | } | 65 | } |
66 | 66 | ||
67 | public void AddAuthorization(NameValueCollection headers) | 67 | public void AddAuthorization(NameValueCollection headers) |