We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7898b7b commit aa99403Copy full SHA for aa99403
Sources/XCLogParser/parser/IDEActivityLogSection+Parsing.swift
@@ -42,7 +42,7 @@ extension IDEActivityLogSection {
42
func groupedByTarget() -> IDEActivityLogSection {
43
// The only way to know if the structure is flatten is to check the first elements
44
// for the `(in target 'ABC' from project Project)` string
45
- let firstElements = subSections.prefix(50) // we only analyze up to the first 15 subsections
+ let firstElements = subSections.prefix(100)
46
let isFlatten = firstElements.contains { $0.getTargetFromCommand() != nil }
47
if isFlatten {
48
let mainTarget = "$MainTarget"
0 commit comments