資源簡介
Log4Net的Demo,配置文件從網(wǎng)上找到,個人認為使用起來簡單有效。本配置文件只實現(xiàn)了文本方式的日志輸出(按不同的日志等級輸出到不同的目錄,并按照日期創(chuàng)建日志。配置文件中設置日志保留10天)。如果需要其他方式的輸出,本Demo沒法幫到你。Demo有Vb.net和C#兩個例子。

代碼片段和文件信息
//INSTANT?C#?NOTE:?Formerly?VB?project-level?imports:
using?System;
using?System.Collections;
using?System.Collections.Generic;
using?System.Data;
using?System.Drawing;
using?System.Diagnostics;
using?System.Windows.Forms;
using?System.Linq;
using?System.xml.Linq;
using?log4net;
namespace?Log4NetDemo
{
public?partial?class?Form1
{
public?Form1()
{
InitializeComponent();
}
private?void?Button1_Click(object?sender?EventArgs?e)
{
Module1.Logger.Warn(“這是一個警告日志“);
Module1.Logger.Info(“這是一個Info日志“);
Module1.Logger.Debug(“這是一個Debug日志“);
Module1.Logger.Error(“這是一個錯誤日志“);
Module1.Logger.Fatal(“這是一個致命的錯誤日志“);
Form2.DefaultInstance.Show();
}
private?static?Form1?_DefaultInstance;
public?static?Form1?DefaultInstance
{
get
{
if?(_DefaultInstance?==?null?||?_DefaultInstance.IsDisposed)
_DefaultInstance?=?new?Form1();
return?_DefaultInstance;
}
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
????..A..H.?????20480??2019-07-01?09:18??Log4NetDemo\Log4NetDemo\.vs\Log4NetDemo\v16\.suo
?????文件?????????74??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log\Debug\20190701.log
?????文件?????????73??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log\Error\20190701.log
?????文件?????????79??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log\Fatal\20190701.log
?????文件?????????73??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log\Info\20190701.log
?????文件?????????73??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log\Warn\20190701.log
?????文件???????4499??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\log4net.config
?????文件?????276480??2017-03-08?19:25??Log4NetDemo\Log4NetDemo\bin\Debug\log4net.dll
?????文件??????13824??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log4NetDemo.exe
?????文件??????44544??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log4NetDemo.pdb
?????文件????????679??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\bin\Debug\Log4NetDemo.xm
?????文件???????1727??2019-07-01?09:18??Log4NetDemo\Log4NetDemo\Form1.Designer.vb
?????文件???????5817??2019-07-01?09:18??Log4NetDemo\Log4NetDemo\Form1.resx
?????文件????????598??2019-07-01?09:18??Log4NetDemo\Log4NetDemo\Form1.vb
?????文件???????4499??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\log4net.config
?????文件?????276480??2017-03-08?19:25??Log4NetDemo\Log4NetDemo\log4net.dll
?????文件???????1127??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\Log4NetDemo.sln
?????文件???????5224??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\Log4NetDemo.vbproj
?????文件????????231??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\Log4NetDemo.vbproj.user
?????文件???????1493??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\My?Project\Application.Designer.vb
?????文件????????510??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\My?Project\Application.myapp
?????文件???????1127??2019-07-01?08:54??Log4NetDemo\Log4NetDemo\My?Project\AssemblyInfo.vb
?????文件???????2778??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\My?Project\Resources.Designer.vb
?????文件???????5612??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\My?Project\Resources.resx
?????文件???????2985??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\My?Project\Settings.Designer.vb
?????文件????????279??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\My?Project\Settings.settings
?????文件????????966??2019-07-01?08:51??Log4NetDemo\Log4NetDemo\obj\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件???????6850??2019-07-01?08:58??Log4NetDemo\Log4NetDemo\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件??????13824??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\obj\Debug\Log4NetDemo.exe
?????文件????????180??2019-07-01?08:59??Log4NetDemo\Log4NetDemo\obj\Debug\Log4NetDemo.Form1.resources
............此處省略164個文件信息
- 上一篇:WPF磨砂蒙版效果
- 下一篇:社區(qū)管理系統(tǒng)asp
評論
共有 條評論