当前位置: 首页>>代码示例>>C#>>正文


C# LogEntry.AddErrorMessage方法代码示例

本文整理汇总了C#中Microsoft.Practices.EnterpriseLibrary.Logging.LogEntry.AddErrorMessage方法的典型用法代码示例。如果您正苦于以下问题:C# LogEntry.AddErrorMessage方法的具体用法?C# LogEntry.AddErrorMessage怎么用?C# LogEntry.AddErrorMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Microsoft.Practices.EnterpriseLibrary.Logging.LogEntry的用法示例。


在下文中一共展示了LogEntry.AddErrorMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AddExceptionInfo

 /// <summary>
 /// Adds the exception info.
 /// </summary>
 /// <param name="log">The log entry.</param>
 /// <param name="exception">The exception.</param>
 /// <returns></returns>
 protected virtual void AddExceptionInfo(LogEntry log, Exception exception)
 {
     if (exception != null && settings.exceptionFormat != null)
     {
         string errorMessage = settings.exceptionFormat
             .Replace("$(exception.message)", exception.Message)
             .Replace("$(exception.source)", exception.Source)
             .Replace("$(exception.targetsite)", (exception.TargetSite==null)?string.Empty:exception.TargetSite.ToString())
             .Replace("$(exception.stacktrace)", exception.StackTrace)
             ;
         //                StringBuilder sb = new StringBuilder(128);
         //                sb.Append("Exception[ ");
         //                sb.Append("message = ").Append(exception.Message).Append(separator);
         //                sb.Append("source = ").Append(exception.Source).Append(separator);
         //                sb.Append("targetsite = ").Append(exception.TargetSite).Append(separator);
         //                sb.Append("stacktrace = ").Append(exception.StackTrace).Append("]");
         //                return sb.ToString();
         log.AddErrorMessage(errorMessage);
     }
 }
开发者ID:jeremymeng,项目名称:common-logging,代码行数:26,代码来源:EntLibLogger.cs

示例2: Log

        public void Log(LoggingData loggingData)
        {
            var logEntry = new LogEntry();

            logEntry.Message = loggingData.Message;
            logEntry.AppDomainName = loggingData.Domain;
            logEntry.AddErrorMessage(loggingData.ExceptionString);
            logEntry.Categories = new string[] { loggingData.LoggerName };

            TraceEventType eventType;

            if (!s_EventTypeDict.TryGetValue(loggingData.Level, out eventType))
                eventType = TraceEventType.Information;

            logEntry.Severity = eventType;

            logEntry.ManagedThreadName = loggingData.ThreadName;
            logEntry.TimeStamp = loggingData.TimeStamp;

            m_LogWriter.Write(logEntry);
        }
开发者ID:kerryjiang,项目名称:AnyLog,代码行数:21,代码来源:EnterpriseLibraryLogger.cs


注:本文中的Microsoft.Practices.EnterpriseLibrary.Logging.LogEntry.AddErrorMessage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。