本文整理汇总了C#中System.Exception.Log方法的典型用法代码示例。如果您正苦于以下问题:C# Exception.Log方法的具体用法?C# Exception.Log怎么用?C# Exception.Log使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Exception
的用法示例。
在下文中一共展示了Exception.Log方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HandleException
protected ViewResult HandleException(string viewName, object model, Exception exc)
{
exc.Log();
ViewBag.Container = model;
this.ModelState.AddModelError("_Form", (this.Request.IsLocal) ?
exc.Message : "An unknown error has occurred.");
return View(viewName, model);
}
示例2: hubConnection_Error
static void hubConnection_Error(Exception obj)
{
obj.Log("Signalr connection issue");
if (obj is UnauthorizedAccessException || obj.InnerException is UnauthorizedAccessException)
{
Logging.DebugMessage("Token expiry... refreshing oauth token");
try
{
hubConnection.Stop();
}
catch (Exception)
{
// ignored
}
hubConnection.Dispose();
ConfigCacheHelper.SetCredentials(hubConnection);
hubConnection.Start();
}
}
示例3: ToConsole
public void ToConsole(Exception e)
{
if (e == null)
{
return;
}
lock (VitaNexCore.ConsoleLock)
{
Console.Write('[');
Utility.PushColor(ConsoleColor.Green);
Console.Write(Name);
Utility.PopColor();
Console.Write("]: ");
Utility.PushColor(ConsoleColor.DarkRed);
Console.WriteLine((Quiet && !Debug) ? e.Message : e.ToString());
Utility.PopColor();
}
if (Debug)
{
e.Log(IOUtility.EnsureFile(VitaNexCore.LogsDirectory + "/Debug/" + TypeOf.FullName + ".log"));
}
}
示例4: HandleError
public bool HandleError(Exception error)
{
error.Log();
return false;
}
示例5: PrintLuaStackTrace
internal static void PrintLuaStackTrace(Exception e)
{
var data = LuaExceptionData.GetData(e);
if (data != null)
{
foreach (var frame in data)
{
e.Log().Error(frame.ToString());
}
}
}