From 98dbe281fa59c53519f4e134a64eb54e1c5bfe08 Mon Sep 17 00:00:00 2001 From: Vladimir Vagaytsev Date: Tue, 21 Jun 2022 12:08:11 +0200 Subject: [PATCH] chore: some corrections in log messages --- core/src/plugins/kubernetes/local-mode.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/src/plugins/kubernetes/local-mode.ts b/core/src/plugins/kubernetes/local-mode.ts index fff34543ee..7ca202da40 100644 --- a/core/src/plugins/kubernetes/local-mode.ts +++ b/core/src/plugins/kubernetes/local-mode.ts @@ -498,7 +498,7 @@ function getLocalAppProcess(configParams: StartLocalModeParams): RecoverableProc section: service.name, msg: chalk.red( composeErrorMessage( - `Error running local app, check the local service logs and the Garden logs in ${getLogsPath(ctx)}`, + `Error running local app, check the local app logs and the Garden logs in ${getLogsPath(ctx)}`, msg ) ), @@ -510,7 +510,9 @@ function getLocalAppProcess(configParams: StartLocalModeParams): RecoverableProc symbol: "warning", section: service.name, msg: chalk.yellow( - `Local app hasn't started after ${localAppFailureCounter.getFailures()} attempts. Please check the logs and consider restarting Garden.` + `Local app hasn't started after ${localAppFailureCounter.getFailures()} attempts. Please check the logs in ${getLogsPath( + ctx + )} and consider restarting Garden.` ), }) })