We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52862cf commit 22d409fCopy full SHA for 22d409f
src/InformaticsGateway/Services/Export/ExportServiceBase.cs
@@ -131,6 +131,10 @@ private void SetupPolling()
131
132
private async Task OnMessageReceivedCallback(MessageReceivedEventArgs eventArgs)
133
{
134
+ using var loggerScope = _logger.BeginScope(new Messaging.Common.LoggingDataDictionary<string, object> {
135
+ { "ThreadId", Environment.CurrentManagedThreadId },
136
+ });
137
+
138
if (!_storageInfoProvider.HasSpaceAvailableForExport)
139
140
_logger.ExportServiceStoppedDueToLowStorageSpace(_storageInfoProvider.AvailableFreeSpace);
0 commit comments