* reverted 7561 as the logger reference should always be private to the class. Thanks sdague for the protip!

0.6.1-post-fixes
lbsa71 2008-12-02 14:09:45 +00:00
parent 8f7c2ba91b
commit 5588cb3e92
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;