초기커밋
This commit is contained in:
29
ServerCommon/BusinessLog/LogInvoker/LandBusinessLog.cs
Normal file
29
ServerCommon/BusinessLog/LogInvoker/LandBusinessLog.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
|
||||
using ServerCore;
|
||||
using ServerBase;
|
||||
|
||||
|
||||
namespace ServerCommon.BusinessLogDomain;
|
||||
|
||||
public class LandBusinessLog : ILogInvokerEx
|
||||
{
|
||||
private LandLogInfo m_data_to_log;
|
||||
|
||||
|
||||
public LandBusinessLog(LandLogInfo logParam)
|
||||
: base(LogDomainType.Land)
|
||||
{
|
||||
m_data_to_log = logParam;
|
||||
}
|
||||
|
||||
public override bool hasLog()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
protected override void fillup(ref BusinessLog.LogBody body)
|
||||
{
|
||||
body.append(new LandLogInfo(this, m_data_to_log));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user