24 lines
359 B
JSON
24 lines
359 B
JSON
|
{
|
|||
|
"Logging": {
|
|||
|
"LogLevel": {
|
|||
|
"Default": "Debug"
|
|||
|
}
|
|||
|
},
|
|||
|
|
|||
|
"NLog": {
|
|||
|
"throwConfigExceptions": true,
|
|||
|
"targets": {
|
|||
|
"logfile": {
|
|||
|
"type": "File",
|
|||
|
"fileName": "c:/temp/nlog.log"
|
|||
|
}
|
|||
|
},
|
|||
|
"rules": [
|
|||
|
{
|
|||
|
"logger": "*",
|
|||
|
"minLevel": "Debug",
|
|||
|
"writeTo": "logfile"
|
|||
|
}
|
|||
|
]
|
|||
|
}
|
|||
|
}
|