diff options
author | lbsa71 | 2008-12-02 14:09:45 +0000 |
---|---|---|
committer | lbsa71 | 2008-12-02 14:09:45 +0000 |
commit | 5588cb3e9243e7551259d99f5d0b7fb684382557 (patch) | |
tree | edc25ef46cf59460f2f4f9800765df1fc90a3ebf | |
parent | changed UserManagerBase. IInterServiceInventoryServices m_interServiceInvent... (diff) | |
download | opensim-SC_OLD-5588cb3e9243e7551259d99f5d0b7fb684382557.zip opensim-SC_OLD-5588cb3e9243e7551259d99f5d0b7fb684382557.tar.gz opensim-SC_OLD-5588cb3e9243e7551259d99f5d0b7fb684382557.tar.bz2 opensim-SC_OLD-5588cb3e9243e7551259d99f5d0b7fb684382557.tar.xz |
* reverted 7561 as the logger reference should always be private to the class. Thanks sdague for the protip!
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/UserServer/Main.cs | 2 | ||||
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index 4fc5815..a001a6f 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs | |||
@@ -48,7 +48,7 @@ namespace OpenSim.Grid.UserServer | |||
48 | /// </summary> | 48 | /// </summary> |
49 | public class OpenUser_Main : BaseOpenSimServer, conscmd_callback | 49 | public class OpenUser_Main : BaseOpenSimServer, conscmd_callback |
50 | { | 50 | { |
51 | protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 51 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
52 | 52 | ||
53 | protected UserConfig Cfg; | 53 | protected UserConfig Cfg; |
54 | 54 | ||
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index a0c96b2..de0099f 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -49,7 +49,7 @@ namespace OpenSim.Grid.UserServer | |||
49 | /// </summary> | 49 | /// </summary> |
50 | public class UserLoginService : LoginService | 50 | public class UserLoginService : LoginService |
51 | { | 51 | { |
52 | protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 52 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
53 | 53 | ||
54 | protected IInterServiceInventoryServices m_inventoryService; | 54 | protected IInterServiceInventoryServices m_inventoryService; |
55 | 55 | ||