diff options
Diffstat (limited to 'OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs')
-rw-r--r-- | OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs b/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs index 1fb4866..e985c06 100644 --- a/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs +++ b/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs | |||
@@ -25,22 +25,24 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using System.IO; | 29 | using System.IO; |
29 | using System.Net; | 30 | using System.Net; |
31 | using System.Reflection; | ||
30 | using System.Text; | 32 | using System.Text; |
31 | using OpenSim.Framework.Console; | 33 | using log4net; |
32 | 34 | ||
33 | namespace OpenSim.Framework.Configuration.HTTP | 35 | namespace OpenSim.Framework.Configuration.HTTP |
34 | { | 36 | { |
35 | public class HTTPConfiguration : IGenericConfig | 37 | public class HTTPConfiguration : IGenericConfig |
36 | { | 38 | { |
37 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 39 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
38 | 40 | ||
39 | private RemoteConfigSettings remoteConfigSettings; | 41 | private RemoteConfigSettings remoteConfigSettings; |
40 | 42 | ||
41 | private XmlConfiguration xmlConfig; | 43 | private XmlConfiguration xmlConfig; |
42 | 44 | ||
43 | private string configFileName = System.String.Empty; | 45 | private string configFileName = String.Empty; |
44 | 46 | ||
45 | public HTTPConfiguration() | 47 | public HTTPConfiguration() |
46 | { | 48 | { |