Skip to content

Commit 9b13f75

Browse files
committed
improve detail log message
1 parent 2cecfdf commit 9b13f75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Smdn.Reflection.ReverseGenerating.ListApi.Core/Smdn.Reflection.ReverseGenerating.ListApi/PackageDependencyAssemblyResolver.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ public PackageDependencyAssemblyResolver(string componentAssemblyPath, ILogger?
7474
logger?.LogTrace(" Hash: {RuntimeLibraryHash}", runtimeLibrary.Hash);
7575
logger?.LogTrace(
7676
" RuntimeAssemblyGroups: {RuntimeLibraryRuntimeAssemblyGroups}",
77-
string.Join(",", runtimeLibrary.RuntimeAssemblyGroups.SelectMany(static g => g.AssetPaths))
77+
string.Join(", ", runtimeLibrary.RuntimeAssemblyGroups.SelectMany(static g => g.AssetPaths))
7878
);
7979
logger?.LogTrace(
8080
" Dependencies: {RuntimeLibraryDependencies}",
81-
string.Join(",", runtimeLibrary.Dependencies.SelectMany(static d => d.Name))
81+
string.Join(", ", runtimeLibrary.Dependencies.Select(static d => d.Name))
8282
);
8383
logger?.LogTrace(" Serviceable: {RuntimeLibraryServiceable}", runtimeLibrary.Serviceable);
8484
logger?.LogTrace(" Path: {RuntimeLibraryPath}", runtimeLibrary.Path);

0 commit comments

Comments
 (0)