Skip to content

Commit

Permalink
Merge pull request #113 from enkelmedia/docs-debugging
Browse files Browse the repository at this point in the history
Docs v4: Added info about debugging
  • Loading branch information
skttl authored Nov 25, 2023
2 parents 279d7f4 + 99e5404 commit a1ce973
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/developers-guide-v4.md
Original file line number Diff line number Diff line change
Expand Up @@ -426,3 +426,18 @@ Full Text Search uses Notifications (similar to the Umbraco) to allow you to hoo
|-|-|-|
|CacheSavingNotification|<ul><li>IEnumerable&#x3C;CacheItem> SavedEntities</li><li>EventMessages Messages</li><li>IDictionary&#x3C;string,object> State</li><li>bool Cancel</li></ul>|<p>Published when the ICacheService.AddToCache is called in the API.<br>SavedEntities: The collection of CacheItem objects being saved.</p>|
|CacheSavedNotification|<ul><li>IEnumerable&#x3C;CacheItem> SavedEntities</li><li>EventMessages Messages</li><li>IDictionary&#x3C;string,object> State</li><li>bool Cancel</li></ul>|<p>Published when the ICacheService.AddToCache is called in the API and after data has been persisted.<br>SavedEntities: The collection of CacheItem objects saved.</p>|

## Debugging
For easier debugging, you can override the default log level for the package in `appsettings.json` like this:

```json
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Our.Umbraco.FullTextSearch": "Debug",
...
}
}
}
```

0 comments on commit a1ce973

Please sign in to comment.