You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- BUG: Windows target unable to build when using ResourcesDictionary imported in App.xaml see https://github.com/DevTKSS/DevTKSS.Uno.SampleApps/issues/15 for more information-->
_logger.LogDebug("CodeSampleOptions changed for {name}",changedOption);
27
33
}
28
-
if(changedOption==_serviceName)
34
+
if(changedOption==Name)
29
35
{
30
-
_logger.LogInformation("Updating CodeSampleOptions for {serviceName}",_serviceName);
36
+
_logger.LogInformation("Updating CodeSampleOptions for {serviceName}",Name);
31
37
_options=newOptions;
32
38
}
33
39
}
@@ -48,19 +54,19 @@ public void UpdateOptions(CodeSampleOptions newOptions, string? changedOption)
48
54
/// <returns>An awaitable <see cref="ValueTask{TResult}"/> providing a <see cref="ImmutableList{T}"/> of <see langword="string"/> with the Sample Names to select from</returns>
_logger.LogTrace("Gathered {count} Options for '{ServiceName}'",sampleOptions.Count,Name);
64
70
}
65
71
66
72
returnsampleOptions;
@@ -72,7 +78,8 @@ public async ValueTask<string> GetCodeSampleAsync(string? sampleID, Cancellation
72
78
{
73
79
if(_logger.IsEnabled(LogLevel.Trace))
74
80
{
75
-
_logger.LogTrace("Fetching Storage Data for SampleID: {sampleID},\nDescription: {description},\nFilePath: {filePath},\nLineRanges: {lineRanges}",
81
+
_logger.LogTrace("Fetching Storage Data for Service '{service}', SampleID: {sampleID},\nDescription: {description},\nFilePath: {filePath},\nLineRanges: {lineRanges}",
82
+
Name,
76
83
sampleOption.SampleID,
77
84
sampleOption.Description,
78
85
sampleOption.FilePath,
@@ -82,7 +89,7 @@ public async ValueTask<string> GetCodeSampleAsync(string? sampleID, Cancellation
0 commit comments