LMConsolidator // Simplifying console output.

This commit is contained in:
ShikiSuen 2022-05-04 18:02:01 +08:00
parent f96b0707e8
commit 871c8ac08f
1 changed files with 1 additions and 2 deletions

View File

@ -34,12 +34,11 @@ extension vChewing {
do { do {
let lineReader = try LineReader(file: fileHandle) let lineReader = try LineReader(file: fileHandle)
for strLine in lineReader { // i=0 for strLine in lineReader { // i=0
IME.prtDebugIntel("Header Seen ||\(strLine)")
if strLine != kPragmaHeader { if strLine != kPragmaHeader {
IME.prtDebugIntel("Header Mismatch, Starting In-Place Consolidation.") IME.prtDebugIntel("Header Mismatch, Starting In-Place Consolidation.")
return false return false
} else { } else {
IME.prtDebugIntel("Header Verification Successful.") IME.prtDebugIntel("Header Verification Succeeded: \(strLine).")
return true return true
} }
} }