File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
PADProjectBuilder/SwiftInterfaceProducer Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -144,9 +144,6 @@ private extension SwiftPackageFileAnalyzer {
144
144
newProjectBasePath: String
145
145
) throws -> [ String ] {
146
146
147
- logger? . log ( " Old project base path \( oldProjectBasePath) " , from: String ( describing: Self . self) )
148
- logger? . log ( " New project base path \( newProjectBasePath) " , from: String ( describing: Self . self) )
149
-
150
147
let oldResourcePaths = Set ( oldResources. map ( \. path) . map { $0. trimmingPrefix ( oldProjectBasePath) } )
151
148
let newResourcePaths = Set ( newResources. map ( \. path) . map { $0. trimmingPrefix ( newProjectBasePath) } )
152
149
@@ -176,6 +173,10 @@ private extension SwiftPackageFileAnalyzer {
176
173
return " Removed resource \( resource. description) "
177
174
}
178
175
176
+ // TODO: Remove this again!
177
+ listOfChanges += [ " [DEBUG] Old project base path \( oldProjectBasePath) " ]
178
+ listOfChanges += [ " [DEBUG] New project base path \( newProjectBasePath) " ]
179
+
179
180
return listOfChanges
180
181
}
181
182
}
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ struct XcodeTools {
88
88
let result = shell. execute ( command)
89
89
let derivedDataPath = " \( projectDirectoryPath) / \( Constants . derivedDataPath) "
90
90
91
- // logger?.debug(result, from: String(describing: Self.self))
91
+ logger? . debug ( result, from: String ( describing: Self . self) )
92
92
93
93
// It might be that the archive failed but the .swiftinterface files are still created
94
94
// so we have to check outside if they exist.
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ private extension XcodeToolsTests {
101
101
( " 📦 Archiving SCHEME from PROJECT_DIRECTORY_PATH " , " XcodeTools " )
102
102
]
103
103
var expectedHandleDebugCalls : [ ( message: String , subsystem: String ) ] = [
104
- // (archiveResult, "XcodeTools")
104
+ ( archiveResult, " XcodeTools " )
105
105
]
106
106
var expectedHandleFileExistsCalls = [ " PROJECT_DIRECTORY_PATH/.build " ]
107
107
You can’t perform that action at this time.
0 commit comments