Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- table
- SSL
- vaadin
- SPC
- NPM
- Eclipse
- Python
- tomcat
- Sqoop
- 공정능력
- Android
- Express
- Kotlin
- Java
- GIT
- Spring
- es6
- IntelliJ
- MSSQL
- SQL
- xPlatform
- mapreduce
- mybatis
- hadoop
- 보조정렬
- R
- plugin
- window
- JavaScript
- react
Archives
- Today
- Total
DBILITY
C# log4net 사용하기 본문
반응형
한 3년만에 써보려니 어렵다.
자바 logger에 익숙하니 없으면 너무 힘이든다.
string.Format과 Debug.Write을 조합해 사용가능하지만 log4net을 써본다.
- https://logging.apache.org/log4net/ 여기서 다운로드
- log4net.dll 참조추가
- NuGet을 사용한다면 위 과정 패스~처음 써보는데 이거 뭐..java의 maven이군ㅎㅎ
- App.config 추가하고,매뉴얼따라 아래와 같이 설정,이건 기초다.파일저장등은 따로 매뉴얼 보면 됨
<?xml version="1.0"?> <configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> </configSections> <log4net> <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender"> <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="%date [%thread] %-5level %logger [%ndc] - %message%newline"/> </layout> </appender> <root> <level value="INFO"/> <appender-ref ref="ConsoleAppender"/> </root> </log4net> </configuration>
- AssemblyInfo.cs 마지막에 [assembly: log4net.Config.XmlConfigurator(Watch = true)] 추가
- 사용하고자하는 class에서 private static readonly ILog log = LogManager.GetLogger(typeof(클래스)); 선언 후 사용
반응형
'C#' 카테고리의 다른 글
C# CS0656 compiler error ( 컴파일러 오류 ) (0) | 2018.01.11 |
---|---|
visualstudio express 다운로드 주소 (0) | 2017.12.27 |
C# 중복실행방지 ( Mutex 사용 ) (0) | 2017.12.26 |
C# WebRequest web page read (0) | 2017.12.26 |
C# AsyncBridge.Net35 (0) | 2017.12.26 |
Comments