Skip to content

Ravadre/NLog.FSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NLog.FSharp

Simple F# helper for NLog

Installation

  • NuGet
    • Using the Package Manager Console:

       PM> Install-Package NLog.FSharp
      
    • Using paket:

       >./.paket/paket.exe add NLog.FSharp --project MyProject
      

Examples

>open NLog.FSharp

>let log = new Logger()        // logger name is determined using the caller type
>let log = new Logger("mylog") // or use an explicit logger name
>let log = new Logger(logger)  // or any NLog.Logger

>let text = "Welcome"
>log.Info "Text:%s" text       // <- use formatted text

// use formatted input with any of these:
>log.{Trace, Debug, Info, Warn, Error, Fatal} "More than one number %M or %i" 3.0m 7

// or with exceptions
>let e, i = new System.Exception(), 3
>log.InfoException e "An exception has occurred %d times" i

More examples of formatted text in F# are available here.

Configuration

For information on NLog configuration files, visit the NLog wiki. Use this resource to determine what to log and where to log it when you need to capture output at runtime.

About

Simple F# helper for NLog

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages