27 lines
569 B
C#
27 lines
569 B
C#
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;
|
|
}
|
|
}
|