-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
48 lines (48 loc) · 1.12 KB
/
Copy pathappsettings.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"exclude": [
"**/bin",
"**/bower_components",
"**/jspm_packages",
"**/node_modules",
"**/obj",
"**/platforms"
],
"Settings": {
"targetCategory": "Zoom Recordings",
"metadataProfileName": "PSU Custom Metadata",
"serviceStartDate": "2018-01-06",
"startTimestamp": 1658334602
},
"NLog": {
"variables": {
"appName": "AddZoomMetadata",
"layout": "${time} ${level:uppercase=true} ${message} ${exception:format=tostring}"
},
"internalLogLevel": "Warn",
"internalLogFile": "c:\\Logs\\NLog\\internal-nlog.txt",
"extensions": [
{ "assembly": "NLog.Extensions.Logging" }
],
"throwConfigExceptions": true,
"targets": {
"async": true,
"FileLogger": {
"type": "File",
"fileName": "c:\\Logs\\NLog\\${shortdate}.log",
"layout": "${layout}"
},
"ConsoleLogger": {
"type": "Console",
"detectConsoleAvailable": true,
"layout": "${layout}"
}
},
"rules": [
{
"logger": "*",
"minLevel": "Info",
"writeTo": "FileLogger, ConsoleLogger"
}
]
}
}