Make m_log in migrations private. Define new m_log in derived class
parent
caf61ab7d8
commit
d2bc673667
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue