Created
          January 30, 2012 09:57 
        
      - 
      
- 
        Save Chrisso/1703644 to your computer and use it in GitHub Desktop. 
    Simple NLOG App.config
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8" ?> | |
| <configuration> | |
| <configSections> | |
| <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/> | |
| </configSections> | |
| <nlog> | |
| <targets> | |
| <target name="console" type="Console" layout="${message}" /> | |
| <target name="debugger" type="Debugger" layout="${message}"/> | |
| </targets> | |
| <rules> | |
| <logger name="*" minlevel="Debug" writeTo="console,debugger" /> | |
| </rules> | |
| </nlog> | |
| </configuration> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
Thanks