DBILITY

C# log4net 사용하기 본문

C#

C# log4net 사용하기

DBILITY 2017. 12. 27. 20:40
반응형

한 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(클래스)); 선언 후 사용
 

Apache log4net – Apache log4net: Home - Apache log4net

What is Apache log4net™ The Apache log4net library is a tool to help the programmer output log statements to a variety of output targets. log4net is a port of the excellent Apache log4j™ framework to the Microsoft® .NET runtime. We have kept the frame

logging.apache.org

 

반응형

'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