コード例 #1
0
ファイル: BaseLog.cs プロジェクト: 1961117443/weborder
 protected void Logger(DBAction action, Action tryHandle, Action <Exception> catchHandle = null, Action finallyHandle = null)
 {
     LogHelper.Logger(log, GetAction(action), ErrorHandle.Throw, tryHandle, catchHandle, finallyHandle);
 }
コード例 #2
0
ファイル: BaseLog.cs プロジェクト: 1961117443/weborder
 protected void Logger(string function, Action tryHandle, Action <Exception> catchHandle = null, Action finallyHandle = null)
 {
     LogHelper.Logger(log, function, ErrorHandle.Throw, tryHandle, catchHandle, finallyHandle);
 }