mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
Make m_log in migrations private. Define new m_log in derived class
This commit is contained in:
@@ -70,7 +70,7 @@ namespace OpenSim.Data
|
||||
|
||||
public class Migration
|
||||
{
|
||||
protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
protected string _type;
|
||||
protected DbConnection _conn;
|
||||
|
||||
@@ -43,6 +43,8 @@ namespace OpenSim.Data.MySQL
|
||||
/// </summary>
|
||||
public class MySqlMigration : Migration
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
public MySqlMigration()
|
||||
: base()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user