@@ -20,7 +20,7 @@ var commonShellBenchDependencies: [Target.Dependency] = [
2020 " CommonShellBenchSupport " ,
2121 . product( name: " WrkstrmPerformance " , package : perfPackageName) ,
2222 . product( name: " ArgumentParser " , package : " swift-argument-parser " ) ,
23- . product( name: " WrkstrmLog " , package : " WrkstrmLog " ) ,
23+ . product( name: " CommonLog " , package : " common-log " ) ,
2424]
2525// No Benchmark dependency; bench runs in reduced mode without extra metrics.
2626
@@ -63,7 +63,7 @@ let package = Package(
6363 dependencies: [
6464 . product( name: " CommonProcess " , package : processPackageName) ,
6565 . product( name: " CommonProcessExecutionKit " , package : processPackageName) ,
66- . product( name: " WrkstrmLog " , package : " WrkstrmLog " ) ,
66+ . product( name: " CommonLog " , package : " common-log " ) ,
6767 ] ,
6868 path: " sources/common-shell " ,
6969 ) ,
@@ -72,7 +72,7 @@ let package = Package(
7272 dependencies: [
7373 " CommonShell " ,
7474 . product( name: " CommonProcessExecutionKit " , package : processPackageName) ,
75- . product( name: " WrkstrmLog " , package : " WrkstrmLog " ) ,
75+ . product( name: " CommonLog " , package : " common-log " ) ,
7676 . product( name: " WrkstrmFoundation " , package : " WrkstrmFoundation " ) ,
7777 . product( name: " ArgumentParser " , package : " swift-argument-parser " ) ,
7878 ] ,
@@ -84,7 +84,7 @@ let package = Package(
8484 " CommonShell " ,
8585 " CommonShellBenchSupport " ,
8686 . product( name: " CommonProcessExecutionKit " , package : processPackageName) ,
87- . product( name: " WrkstrmLog " , package : " WrkstrmLog " ) ,
87+ . product( name: " CommonLog " , package : " common-log " ) ,
8888 ] ,
8989 path: " tests/common-shell-tests " ,
9090 ) ,
@@ -150,14 +150,14 @@ extension Package {
150150 static var local : Inject = . init( dependencies: [
151151 // Prefer local mono paths with identities matching remote repo names
152152 . package ( path: " ../common-process " ) ,
153- . package ( name: " WrkstrmLog " , path: " ../../../../WrkstrmLog " ) ,
153+ . package ( name: " common-log " , path: " ../../../../common/domain/system/common-log " ) ,
154154 . package ( path: " ../../../../wrkstrm-performance " ) ,
155155 . package ( name: " WrkstrmFoundation " , path: " ../../../../WrkstrmFoundation " ) ,
156156 ] )
157157
158158 static var remote : Inject = . init( dependencies: [
159159 . package ( url: " https://github.com/wrkstrm/common-process.git " , from: " 0.3.0 " ) ,
160- . package ( url: " https://github.com/wrkstrm/WrkstrmLog .git " , from: " 2.0.0 " ) ,
160+ . package ( url: " https://github.com/wrkstrm/common-log .git " , from: " 2.0.0 " ) ,
161161 . package ( url: " https://github.com/wrkstrm/wrkstrm-performance.git " , from: " 0.1.0 " ) ,
162162 . package ( url: " https://github.com/wrkstrm/WrkstrmFoundation.git " , from: " 3.0.0 " ) ,
163163 ] )
0 commit comments