-
Notifications
You must be signed in to change notification settings - Fork 55
Add missing entity/schedule logging #648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 2 commits
96b4dc5
c8ff3f5
db37bf4
558d9ef
126a186
eb9211b
164cc12
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -49,5 +49,17 @@ public static void PurgingInstances(this ILogger logger, PurgeInstancesFilter fi | |||||
| string? statuses = filter?.Statuses is null ? null : string.Join("|", filter.Statuses); | ||||||
| PurgingInstances(logger, filter?.CreatedFrom, filter?.CreatedTo, statuses); | ||||||
| } | ||||||
|
|
||||||
| [LoggerMessage(EventId = 47, Level = LogLevel.Information, Message = "Signaling entity '{instanceId}' with operation '{operationName}'.")] | ||||||
| public static partial void SignalingEntity(this ILogger logger, string instanceId, string operationName); | ||||||
|
|
||||||
| [LoggerMessage(EventId = 48, Level = LogLevel.Information, Message = "Getting entity '{instanceId}'.")] | ||||||
| public static partial void GettingEntity(this ILogger logger, string instanceId); | ||||||
|
|
||||||
| [LoggerMessage(EventId = 50, Level = LogLevel.Information, Message = "Querying entities with filter: {{ StartsWith = {startsWith}, LastModifiedFrom = {lastModifiedFrom}, LastModifiedTo = {lastModifiedTo} }}")] | ||||||
|
||||||
| [LoggerMessage(EventId = 50, Level = LogLevel.Information, Message = "Querying entities with filter: {{ StartsWith = {startsWith}, LastModifiedFrom = {lastModifiedFrom}, LastModifiedTo = {lastModifiedTo} }}")] | |
| [LoggerMessage(EventId = 49, Level = LogLevel.Information, Message = "Querying entities with filter: {{ StartsWith = {startsWith}, LastModifiedFrom = {lastModifiedFrom}, LastModifiedTo = {lastModifiedTo} }}")] |
Uh oh!
There was an error while loading. Please reload this page.