* reverted 7561 as the logger reference should always be private to the class. Thanks sdague for the protip!
parent
8f7c2ba91b
commit
5588cb3e92
|
@ -48,7 +48,7 @@ namespace OpenSim.Grid.UserServer
|
|||
/// </summary>
|
||||
public class OpenUser_Main : BaseOpenSimServer, conscmd_callback
|
||||
{
|
||||
protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
protected UserConfig Cfg;
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ namespace OpenSim.Grid.UserServer
|
|||
/// </summary>
|
||||
public class UserLoginService : LoginService
|
||||
{
|
||||
protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
protected IInterServiceInventoryServices m_inventoryService;
|
||||
|
||||
|
|
Loading…
Reference in New Issue