當前位置: 首頁>>代碼示例>>C#>>正文


C# Exception.Log方法代碼示例

本文整理匯總了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);
        }
開發者ID:Logrythmik,項目名稱:Logrythmik.Mvc,代碼行數:9,代碼來源:BaseController.cs

示例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();
     }
 }
開發者ID:JonasSyrstad,項目名稱:Stardust,代碼行數:19,代碼來源:Startup.cs

示例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"));
			}
		}
開發者ID:Ravenwolfe,項目名稱:Core,代碼行數:24,代碼來源:VitaNex_Modules.cs

示例4: HandleError

 public bool HandleError(Exception error)
 {
     error.Log();
     return false;
 }
開發者ID:JonasSyrstad,項目名稱:Stardust,代碼行數:5,代碼來源:HostFactory.cs

示例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());
                }
            }
        }
開發者ID:Preto0203,項目名稱:Server_One,代碼行數:12,代碼來源:ScriptEnvironment.cs


注:本文中的System.Exception.Log方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。