1.  

注意:1)要引用响应的程序集,必须是41的

         2)配置文件

  1. using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;
  2. using Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ObjectBuilder;
  3. using Microsoft.Practices.EnterpriseLibrary.Logging;
  4. using Microsoft.Practices.EnterpriseLibrary.Logging.Filters;
  5. using Microsoft.Practices.EnterpriseLibrary.Logging.Instrumentation;
  6. using System.Collections.Generic;
  7. using System.Configuration;
  8. using System.Diagnostics;
  9. namespace Core
  10. {
  11. public class MicroLogger
  12. {
  13. // Fields
  14. private const int DefaultEventId = ;
  15. private const int DefaultPriority = -;
  16. private const TraceEventType DefaultSeverity = TraceEventType.Information;
  17. private const string DefaultTitle = "";
  18. private static readonly ICollection<string> emptyCategoriesList = new List<string>();
  19. private static LogWriterFactory factory = new LogWriterFactory(ConfigurationSourceFactory.Create());
  20. private static object sync = new object();
  21. private static volatile LogWriter writer;
  22.  
  23. //第三步
  24. public static void Write(LogEntry log)
  25. {
  26. Writer.Write(log);
  27. }
  28. //第一步
  29. public static void Write(object message)
  30. {
  31. Write(message, emptyCategoriesList, -, , TraceEventType.Information, "", null);
  32. }
  33.  
  34. #region
  35. public static void Write(object message, ICollection<string> categories)
  36. {
  37. Write(message, categories, -, , TraceEventType.Information, "", null);
  38. }
  39.  
  40. //第二步
  41. public static void Write(object message, ICollection<string> categories, int priority, int eventId, TraceEventType severity, string title, IDictionary<string, object> properties)
  42. {
  43. LogEntry log = new LogEntry
  44. {
  45. Message = message.ToString(),
  46. Categories = categories,
  47. Priority = priority,
  48. EventId = eventId,
  49. Severity = severity,
  50. Title = title,
  51. ExtendedProperties = properties
  52. };
  53. Write(log);
  54. }
  55.  
  56. //第四步
  57. // Properties
  58. public static LogWriter Writer
  59. {
  60. get
  61. {
  62. if (writer == null)
  63. {
  64. lock (sync)
  65. {
  66. if (writer == null)
  67. {
  68. try
  69. {
  70. writer = factory.Create();
  71. }
  72. catch (ConfigurationErrorsException exception)
  73. {
  74. TryLogConfigurationFailure(exception);
  75. throw;
  76. }
  77. }
  78. }
  79. }
  80. return writer;
  81. }
  82. }
  83. }
  84. }

对应的配置文件,可以通用

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <section name="loggingConfiguration"
  5. type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  6. </configSections>
  7.  
  8. <loggingConfiguration name="Logging Application Block"
  9. tracingEnabled="true"
  10. defaultCategory="General"
  11. logWarningsWhenNoCategoriesMatch="true">
  12. <listeners>
  13. <add fileName="log\JobExecute.log"
  14. footer="----------------------------------------"
  15. formatter="Text Formatter"
  16. header="----------------------------------------"
  17. rollFileExistsBehavior="Increment"
  18. rollInterval="Day"
  19. rollSizeKB="0"
  20. timeStampPattern="yyyy-MM-dd"
  21. listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  22. traceOutputOptions="None"
  23. filter="All"
  24. type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  25. name="Rolling Flat File Trace Listener JobExecute" />
  26.  
  27. <add fileName="log\error.log"
  28. footer="----------------------------------------"
  29. formatter="Text Formatter"
  30. header="----------------------------------------"
  31. rollFileExistsBehavior="Increment"
  32. rollInterval="Day"
  33. rollSizeKB="0"
  34. timeStampPattern="yyyy-MM-dd"
  35. listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  36. traceOutputOptions="None"
  37. filter="All"
  38. type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  39. name="Rolling Flat File Trace Listener Error" />
  40.  
  41. <add fileName="log\returnError.log"
  42. footer="----------------------------------------"
  43. formatter="Text Formatter"
  44. header="----------------------------------------"
  45. rollFileExistsBehavior="Increment"
  46. rollInterval="Day"
  47. rollSizeKB="0"
  48. timeStampPattern="yyyy-MM-dd"
  49. listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  50. traceOutputOptions="None"
  51. filter="All"
  52. type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  53. name="Rolling Flat File Trace Listener ReturnError" />
  54.  
  55. <add fileName="log\other.log"
  56. footer="----------------------------------------"
  57. formatter="Text Formatter"
  58. header="----------------------------------------"
  59. rollFileExistsBehavior="Increment"
  60. rollInterval="Day"
  61. rollSizeKB="0"
  62. timeStampPattern="yyyy-MM-dd"
  63. listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  64. traceOutputOptions="None"
  65. filter="All"
  66. type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  67. name="Rolling Flat File Trace Listener Other" />
  68.  
  69. <add listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.CustomTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  70. traceOutputOptions="None"
  71. filter="All"
  72. type="YTO.Framework.Logging.Database.DatabaseTraceListener, YTO.Framework.Logging.Database"
  73. initializeData=""
  74. formatter="Text Formatter"
  75. name="SqlServer Trace Listener"/>
  76. </listeners>
  77.  
  78. <formatters>
  79. <add template="Timestamp: {timestamp(local)}
  80. Message: {message}
  81. Category: {category}
  82. Priority: {priority}
  83. EventId: {eventid}
  84. Severity: {severity}
  85. Title:{title}
  86. Machine: {machine}
  87. Application Domain: {appDomain}
  88. Process Id: {processId}
  89. Process Name: {processName}
  90. Win32 Thread Id: {win32ThreadId}
  91. Thread Name: {threadName}
  92. Extended Properties: {dictionary({key} - {value}
  93. )}"
  94. type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
  95. name="Text Formatter" />
  96. </formatters>
  97.  
  98. <categorySources>
  99. <add switchValue="All"
  100. name="Exception">
  101. <listeners>
  102. <add name="Rolling Flat File Trace Listener Error" />
  103. </listeners>
  104. </add>
  105. <add switchValue="All"
  106. name="JobExecute">
  107. <listeners>
  108. <add name="Rolling Flat File Trace Listener JobExecute" />
  109. </listeners>
  110. </add>
  111. <add switchValue="All"
  112. name="ReturnError">
  113. <listeners>
  114. <add name="Rolling Flat File Trace Listener ReturnError" />
  115. </listeners>
  116. </add>
  117. </categorySources>
  118.  
  119. <specialSources>
  120. <allEvents switchValue="All"
  121. name="All Events" />
  122.  
  123. <notProcessed switchValue="All"
  124. name="Unprocessed Category">
  125. <listeners>
  126. <add name="Rolling Flat File Trace Listener Other" />
  127. </listeners>
  128. </notProcessed>
  129.  
  130. <errors switchValue="All"
  131. name="Logging Errors &amp; Warnings">
  132. <listeners>
  133. <add name="Rolling Flat File Trace Listener Error" />
  134. </listeners>
  135. </errors>
  136. </specialSources>
  137. </loggingConfiguration>
  138. </configuration>

参考链接:

http://blog.csdn.net/ghostbear/article/details/8194460

http://tech.ddvip.com/2008-10/122369719476816.html

http://www.cnblogs.com/huangcong/archive/2010/05/31/1748672.html

EnterpriseLibrary4 自己封装程序集实现log打印的更多相关文章

  1. C#封装程序集自定义类方法注释提示

    一.为什么使用封装程序集: 在很多分布式应用程序开发中,针对每一种功能可能条用的接口不一样,往往习惯将需要被调用的接口,封装成DLL给调用方应用后使用,这样既规范了调用的方式,又避免了调用出现参数请求 ...

  2. JS高级群的日常!写一个从10到0的倒计时,用console.log打印,不可以用 setInterval!本来说好的研究avalonJS最后演变成了看着大神在那边互相比拼实力。。

      JS高级群的日常!写一个从10到0的倒计时,用console.log打印,不可以用 setInterval!本来说好的研究avalonJS最后演变成了看着大神在那边互相比拼实力..   小森执行一 ...

  3. 关于Debug下的Log打印问题

    在项目中为了调试经常会用到Log打印,比如打印当前方法__func__, 对象,地址等等,所以项目最后每次运行调试控制台满满的都是打印日志,到release发布的时候,显然不太合适,这里其实可以用一个 ...

  4. C#封装程序集属性方法注释说明

    一.使用封装程序集好处: 在很多分布式应用程序开发中,针对每一种功能可能条用的接口不一样,往往习惯将需要被调用的接口,封装成DLL给调用方应用后使用,这样既规范了调用的方式,又避免了调用出现参数请求方 ...

  5. javascript篇-console.log()打印object却显示为字符串[object object]

    console.log打印对象遇到的一个问题,如下截图 打印结果与预期不符,原因是因为字符串‘a’和对象object拼接在一起,拼成了一个字符串

  6. tiny4412 串口驱动分析七 --- log打印的几个阶段之内核启动阶段(earlyprintk)

    作者:彭东林 邮箱:pengdonglin137@163.com 开发板:tiny4412ADK+S700 4GB Flash 主机:Wind7 64位 虚拟机:Vmware+Ubuntu12_04 ...

  7. 关于console.log() 打印得引用类型得数据得相关问题

    console.log()打印出来得是这个引用类型最终得结果,而不是在打印得时候当前得值 ,b:} console.log(json) json.a = ; 如上  ,打印得将是  {a:3,b:2} ...

  8. xcode中自定义log打印

    打印内容包括 在哪个文件中 ? 在哪个方法中? 将要执行什么操作?   // 此打印实现前提: // 1.在.pch文件中实现自定义log打印方法,log名换为LCLog // 2.定义一个宏obje ...

  9. 基于 Android NDK 的学习之旅-----JNI LOG 打印

    程序都是调出来的. 下面我介绍下JNI层的log打印方法的使用,类似与Android sdk提供的log 1.Android 应用层 MainActivity.java 主要功能代码 a)       ...

随机推荐

  1. 集成 Apple Pay

    作者感言 在中秋过后终于把国内的三大支付平台SDK集成都搞定了, 现在我们终于可以来研究Apple自家的支付Apple Pay最后:如果你有更好的建议或者对这篇文章有不满的地方, 请联系我, 我会参考 ...

  2. c++ boost 汉字和模式串混用的例子

    *=============================================================== * Copyright (C) All rights reserved ...

  3. jQuery.Autocomplete实现自动完成功能(详解)

    1.jquery.autocomplete参考地址 http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ http://do ...

  4. 动态链接库dll键盘钩子后台记录代码示例

    //.header #ifndef _DLLHOOK_H_ #define _DLLHOOK_H_ #include <windows.h> #define DLL_EXPORT_FUN ...

  5. uboot启动 及命令分析(3)

    u-boot命令 先贴一个重要结构,位于uboot/include/command.h,这个结构代表每个uboot命令 struct cmd_tbl_s { char     *name;   /* ...

  6. win7 MS SQL SERVER 2000安装

    http://blog.chinaunix.net/uid-24398518-id-2156226.html MicrosoftInternetExplorer402DocumentNotSpecif ...

  7. C++-dynamic_cast的用处

    主要用来在没有实现文件,只有头文件的情况下,添加派生类的功能,如下例给programmer加奖金. 注意:dynamic_cast不能用于没有virtual函数的类 ///////////////// ...

  8. redis 详解

    什么是redis? redis 是一个基于内存的高性能key-value数据库. (有空再补充,有理解错误或不足欢迎指正) Reids的特点 Redis本质上是一个Key-Value类型的内存数据库, ...

  9. C/C++学习之基础-001

    1.C++虚函数的工作原理 虚函数(virtual function)需要虚函数表(virtual table)才能实现.如果一个类有函数声明成虚拟的,就会生成一个虚函数表,存放这个类的虚函数地址.若 ...

  10. Oracle GoldenGate 12c中的协同交付(Coordinated Delivery)

    OGG 12c中,并行交付有2种模式:集成交付.协同交付.不过集成交付只能针对目标端是oracle数据库(有版本要求)使用,而协同交付则可以在非oracle数据库上使用. 先来看2个问题, l 为什么 ...