EnterpriseLibrary4 自己封装程序集实现log打印
注意:1)要引用响应的程序集,必须是41的
2)配置文件
- using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;
- using Microsoft.Practices.EnterpriseLibrary.Common.Configuration.ObjectBuilder;
- using Microsoft.Practices.EnterpriseLibrary.Logging;
- using Microsoft.Practices.EnterpriseLibrary.Logging.Filters;
- using Microsoft.Practices.EnterpriseLibrary.Logging.Instrumentation;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Diagnostics;
- namespace Core
- {
- public class MicroLogger
- {
- // Fields
- private const int DefaultEventId = ;
- private const int DefaultPriority = -;
- private const TraceEventType DefaultSeverity = TraceEventType.Information;
- private const string DefaultTitle = "";
- private static readonly ICollection<string> emptyCategoriesList = new List<string>();
- private static LogWriterFactory factory = new LogWriterFactory(ConfigurationSourceFactory.Create());
- private static object sync = new object();
- private static volatile LogWriter writer;
- //第三步
- public static void Write(LogEntry log)
- {
- Writer.Write(log);
- }
- //第一步
- public static void Write(object message)
- {
- Write(message, emptyCategoriesList, -, , TraceEventType.Information, "", null);
- }
- #region
- public static void Write(object message, ICollection<string> categories)
- {
- Write(message, categories, -, , TraceEventType.Information, "", null);
- }
- //第二步
- public static void Write(object message, ICollection<string> categories, int priority, int eventId, TraceEventType severity, string title, IDictionary<string, object> properties)
- {
- LogEntry log = new LogEntry
- {
- Message = message.ToString(),
- Categories = categories,
- Priority = priority,
- EventId = eventId,
- Severity = severity,
- Title = title,
- ExtendedProperties = properties
- };
- Write(log);
- }
- //第四步
- // Properties
- public static LogWriter Writer
- {
- get
- {
- if (writer == null)
- {
- lock (sync)
- {
- if (writer == null)
- {
- try
- {
- writer = factory.Create();
- }
- catch (ConfigurationErrorsException exception)
- {
- TryLogConfigurationFailure(exception);
- throw;
- }
- }
- }
- }
- return writer;
- }
- }
- }
- }
对应的配置文件,可以通用
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <configSections>
- <section name="loggingConfiguration"
- type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
- </configSections>
- <loggingConfiguration name="Logging Application Block"
- tracingEnabled="true"
- defaultCategory="General"
- logWarningsWhenNoCategoriesMatch="true">
- <listeners>
- <add fileName="log\JobExecute.log"
- footer="----------------------------------------"
- formatter="Text Formatter"
- header="----------------------------------------"
- rollFileExistsBehavior="Increment"
- rollInterval="Day"
- rollSizeKB="0"
- timeStampPattern="yyyy-MM-dd"
- listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- traceOutputOptions="None"
- filter="All"
- type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- name="Rolling Flat File Trace Listener JobExecute" />
- <add fileName="log\error.log"
- footer="----------------------------------------"
- formatter="Text Formatter"
- header="----------------------------------------"
- rollFileExistsBehavior="Increment"
- rollInterval="Day"
- rollSizeKB="0"
- timeStampPattern="yyyy-MM-dd"
- listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- traceOutputOptions="None"
- filter="All"
- type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- name="Rolling Flat File Trace Listener Error" />
- <add fileName="log\returnError.log"
- footer="----------------------------------------"
- formatter="Text Formatter"
- header="----------------------------------------"
- rollFileExistsBehavior="Increment"
- rollInterval="Day"
- rollSizeKB="0"
- timeStampPattern="yyyy-MM-dd"
- listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- traceOutputOptions="None"
- filter="All"
- type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- name="Rolling Flat File Trace Listener ReturnError" />
- <add fileName="log\other.log"
- footer="----------------------------------------"
- formatter="Text Formatter"
- header="----------------------------------------"
- rollFileExistsBehavior="Increment"
- rollInterval="Day"
- rollSizeKB="0"
- timeStampPattern="yyyy-MM-dd"
- listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.RollingFlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- traceOutputOptions="None"
- filter="All"
- type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.RollingFlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- name="Rolling Flat File Trace Listener Other" />
- <add listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.CustomTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- traceOutputOptions="None"
- filter="All"
- type="YTO.Framework.Logging.Database.DatabaseTraceListener, YTO.Framework.Logging.Database"
- initializeData=""
- formatter="Text Formatter"
- name="SqlServer Trace Listener"/>
- </listeners>
- <formatters>
- <add template="Timestamp: {timestamp(local)}
- Message: {message}
- Category: {category}
- Priority: {priority}
- EventId: {eventid}
- Severity: {severity}
- Title:{title}
- Machine: {machine}
- Application Domain: {appDomain}
- Process Id: {processId}
- Process Name: {processName}
- Win32 Thread Id: {win32ThreadId}
- Thread Name: {threadName}
- Extended Properties: {dictionary({key} - {value}
- )}"
- type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
- name="Text Formatter" />
- </formatters>
- <categorySources>
- <add switchValue="All"
- name="Exception">
- <listeners>
- <add name="Rolling Flat File Trace Listener Error" />
- </listeners>
- </add>
- <add switchValue="All"
- name="JobExecute">
- <listeners>
- <add name="Rolling Flat File Trace Listener JobExecute" />
- </listeners>
- </add>
- <add switchValue="All"
- name="ReturnError">
- <listeners>
- <add name="Rolling Flat File Trace Listener ReturnError" />
- </listeners>
- </add>
- </categorySources>
- <specialSources>
- <allEvents switchValue="All"
- name="All Events" />
- <notProcessed switchValue="All"
- name="Unprocessed Category">
- <listeners>
- <add name="Rolling Flat File Trace Listener Other" />
- </listeners>
- </notProcessed>
- <errors switchValue="All"
- name="Logging Errors & Warnings">
- <listeners>
- <add name="Rolling Flat File Trace Listener Error" />
- </listeners>
- </errors>
- </specialSources>
- </loggingConfiguration>
- </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打印的更多相关文章
- C#封装程序集自定义类方法注释提示
一.为什么使用封装程序集: 在很多分布式应用程序开发中,针对每一种功能可能条用的接口不一样,往往习惯将需要被调用的接口,封装成DLL给调用方应用后使用,这样既规范了调用的方式,又避免了调用出现参数请求 ...
- JS高级群的日常!写一个从10到0的倒计时,用console.log打印,不可以用 setInterval!本来说好的研究avalonJS最后演变成了看着大神在那边互相比拼实力。。
JS高级群的日常!写一个从10到0的倒计时,用console.log打印,不可以用 setInterval!本来说好的研究avalonJS最后演变成了看着大神在那边互相比拼实力.. 小森执行一 ...
- 关于Debug下的Log打印问题
在项目中为了调试经常会用到Log打印,比如打印当前方法__func__, 对象,地址等等,所以项目最后每次运行调试控制台满满的都是打印日志,到release发布的时候,显然不太合适,这里其实可以用一个 ...
- C#封装程序集属性方法注释说明
一.使用封装程序集好处: 在很多分布式应用程序开发中,针对每一种功能可能条用的接口不一样,往往习惯将需要被调用的接口,封装成DLL给调用方应用后使用,这样既规范了调用的方式,又避免了调用出现参数请求方 ...
- javascript篇-console.log()打印object却显示为字符串[object object]
console.log打印对象遇到的一个问题,如下截图 打印结果与预期不符,原因是因为字符串‘a’和对象object拼接在一起,拼成了一个字符串
- tiny4412 串口驱动分析七 --- log打印的几个阶段之内核启动阶段(earlyprintk)
作者:彭东林 邮箱:pengdonglin137@163.com 开发板:tiny4412ADK+S700 4GB Flash 主机:Wind7 64位 虚拟机:Vmware+Ubuntu12_04 ...
- 关于console.log() 打印得引用类型得数据得相关问题
console.log()打印出来得是这个引用类型最终得结果,而不是在打印得时候当前得值 ,b:} console.log(json) json.a = ; 如上 ,打印得将是 {a:3,b:2} ...
- xcode中自定义log打印
打印内容包括 在哪个文件中 ? 在哪个方法中? 将要执行什么操作? // 此打印实现前提: // 1.在.pch文件中实现自定义log打印方法,log名换为LCLog // 2.定义一个宏obje ...
- 基于 Android NDK 的学习之旅-----JNI LOG 打印
程序都是调出来的. 下面我介绍下JNI层的log打印方法的使用,类似与Android sdk提供的log 1.Android 应用层 MainActivity.java 主要功能代码 a) ...
随机推荐
- 集成 Apple Pay
作者感言 在中秋过后终于把国内的三大支付平台SDK集成都搞定了, 现在我们终于可以来研究Apple自家的支付Apple Pay最后:如果你有更好的建议或者对这篇文章有不满的地方, 请联系我, 我会参考 ...
- c++ boost 汉字和模式串混用的例子
*=============================================================== * Copyright (C) All rights reserved ...
- jQuery.Autocomplete实现自动完成功能(详解)
1.jquery.autocomplete参考地址 http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ http://do ...
- 动态链接库dll键盘钩子后台记录代码示例
//.header #ifndef _DLLHOOK_H_ #define _DLLHOOK_H_ #include <windows.h> #define DLL_EXPORT_FUN ...
- uboot启动 及命令分析(3)
u-boot命令 先贴一个重要结构,位于uboot/include/command.h,这个结构代表每个uboot命令 struct cmd_tbl_s { char *name; /* ...
- win7 MS SQL SERVER 2000安装
http://blog.chinaunix.net/uid-24398518-id-2156226.html MicrosoftInternetExplorer402DocumentNotSpecif ...
- C++-dynamic_cast的用处
主要用来在没有实现文件,只有头文件的情况下,添加派生类的功能,如下例给programmer加奖金. 注意:dynamic_cast不能用于没有virtual函数的类 ///////////////// ...
- redis 详解
什么是redis? redis 是一个基于内存的高性能key-value数据库. (有空再补充,有理解错误或不足欢迎指正) Reids的特点 Redis本质上是一个Key-Value类型的内存数据库, ...
- C/C++学习之基础-001
1.C++虚函数的工作原理 虚函数(virtual function)需要虚函数表(virtual table)才能实现.如果一个类有函数声明成虚拟的,就会生成一个虚函数表,存放这个类的虚函数地址.若 ...
- Oracle GoldenGate 12c中的协同交付(Coordinated Delivery)
OGG 12c中,并行交付有2种模式:集成交付.协同交付.不过集成交付只能针对目标端是oracle数据库(有版本要求)使用,而协同交付则可以在非oracle数据库上使用. 先来看2个问题, l 为什么 ...