From f1b35ed671e9c061482fff0a1515cc02faff0e0b Mon Sep 17 00:00:00 2001 From: Lino Schmidt Date: Fri, 17 Jun 2022 13:34:50 +0200 Subject: [PATCH] Updated add log error message --- src/components/ui/mainSide.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/mainSide.tsx b/src/components/ui/mainSide.tsx index 4e4744c..0a9d0fe 100644 --- a/src/components/ui/mainSide.tsx +++ b/src/components/ui/mainSide.tsx @@ -86,7 +86,7 @@ function addLog(updateHook:React.Dispatch>) { result.filePaths.forEach(value => { const logToAdd = "\"" + value + "\""; if(settingList.log.includes(logToAdd)) { - logger.warningMSG("Log already added: " + logToAdd); + logger.warningMSG("Log " + logToAdd + " already added."); } else { logStr += "\"" + String(value) + "\""; }