초기커밋
This commit is contained in:
26
BrokerApiCore/BrokerBusinessLog/PlanetUserAuthBusinessLog.cs
Normal file
26
BrokerApiCore/BrokerBusinessLog/PlanetUserAuthBusinessLog.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using ServerBase;
|
||||
using ServerCommon;
|
||||
|
||||
|
||||
namespace BrokerCore.BrokerBusinessLog;
|
||||
|
||||
public class PlanetUserAuthBusinessLog : ILogInvokerEx
|
||||
{
|
||||
private readonly PlanetUserAuthLogData m_log_data;
|
||||
|
||||
public PlanetUserAuthBusinessLog(PlanetUserAuthLogData logData, LogActionType logActionType)
|
||||
: base(LogDomainType.BrokerApi, new LogActionEx(logActionType))
|
||||
{
|
||||
m_log_data = new PlanetUserAuthLogData(this, logData);
|
||||
}
|
||||
|
||||
protected override void fillup(ref BusinessLog.LogBody body)
|
||||
{
|
||||
body.append(m_log_data);
|
||||
}
|
||||
|
||||
public override bool hasLog()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user