...
This value controls the handling of exceptions that occur during background processing. If possible, this option should not be defined or set to the value false. The value true only makes sense during debugging or within unit tests.
Example
Code Block | ||
---|---|---|
| ||
... "Debug": { "HttpLogging": { "Enabled": false, "Include": [ ".*" ], "Exclude": [ "^(http|https)://[^/]+/_content/", "^(http|https)://[^/]+/_framework/", "^(http|https)://[^/]+/api/", "^(http|https)://[^/]+/css/", "^(http|https)://[^/]+/font/", "^(http|https)://[^/]+/js/", "^(http|https)://[^/]+/lib/", "^(http|https)://[^/]+/[sS]erver/", "^(http|https)://[^/]+/$", "^(http|https)://[^/]+/favicon.ico$", "^(http|https)://[^/]+/index.html$", "^(http|https)://[^/]+/[sS]erver$", "^(http|https)://[^/]+/[^/]+.css$" ], "ForceHexDump": false }, "EnableBackgroundExceptions": false }, ... |
...