From 0bdc0b7074380397e41cb482abefdb6c437d08c9 Mon Sep 17 00:00:00 2001 From: "Takuto NAKAMURA (Kyome)" Date: Sat, 12 Mar 2022 14:32:43 +0900 Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=8A=9B=E7=B5=90=E6=9E=9C=E3=81=AB?= =?UTF-8?q?=E7=B5=B5=E6=96=87=E5=AD=97=E3=82=92=E8=B6=B3=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/LineCounterFramework/LineCounter.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/LineCounterFramework/LineCounter.swift b/Sources/LineCounterFramework/LineCounter.swift index a3c4bb7..f45215e 100644 --- a/Sources/LineCounterFramework/LineCounter.swift +++ b/Sources/LineCounterFramework/LineCounter.swift @@ -14,10 +14,10 @@ public struct LineCounter { lc.enumerateFilePaths(url: URL(fileURLWithPath: path)) } if filePaths.isEmpty { - Swift.print("There was no file to read.") + Swift.print("⚠️ There was no file to read.") } else { let output = lc.output(filePaths, extentions, noWarnings) - Swift.print(output) + Swift.print("🎯 Result of LineCounter\n\(output)") } }