Skip to content

Commit 569fb71

Browse files
committed
Remove logs
1 parent e1231f1 commit 569fb71

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Tool/Sources/XcodeInspector/SourceEditor.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,18 +130,14 @@ extension SourceEditor {
130130
let selectedRangeMatch = selectedTextRange == sourceSelectedTextRange
131131
let lines: [String] = {
132132
if contentMatch {
133-
Logger.service.debug("Cache Hit: Lines")
134133
return cachedLines
135134
}
136-
Logger.service.debug("Cache Missed: Lines")
137135
return content.breakLines(appendLineBreakToLastLine: false)
138136
}()
139137
let selections: [CursorRange] = {
140138
if contentMatch, selectedRangeMatch {
141-
Logger.service.debug("Cache Hit: Selections")
142139
return cachedSelections
143140
}
144-
Logger.service.debug("Cache Missed: Selections")
145141
if let selectedTextRange {
146142
return [SourceEditor.convertRangeToCursorRange(
147143
selectedTextRange,

0 commit comments

Comments
 (0)