diff --git a/src/main/java/com/aws/greengrass/config/ConfigurationReader.java b/src/main/java/com/aws/greengrass/config/ConfigurationReader.java index 8eae3e35e5..431f010442 100644 --- a/src/main/java/com/aws/greengrass/config/ConfigurationReader.java +++ b/src/main/java/com/aws/greengrass/config/ConfigurationReader.java @@ -113,7 +113,7 @@ private static void mergeTLogInto(Configuration c, Path p) throws IOException { public static boolean validateTlog(Path tlogPath) { try { if (!Files.exists(tlogPath)) { - logger.atError().setEventType("validate-tlog").kv("path", tlogPath) + logger.atDebug().setEventType("validate-tlog").kv("path", tlogPath) .log("Transaction log file does not exist at given path"); return false; } diff --git a/src/main/java/com/aws/greengrass/lifecyclemanager/KernelLifecycle.java b/src/main/java/com/aws/greengrass/lifecyclemanager/KernelLifecycle.java index d023b7aaf5..7950dfd249 100644 --- a/src/main/java/com/aws/greengrass/lifecyclemanager/KernelLifecycle.java +++ b/src/main/java/com/aws/greengrass/lifecyclemanager/KernelLifecycle.java @@ -388,7 +388,9 @@ private void readConfigFromBackUpTLog(Path transactionLogPath, Path bootstrapTlo return; } } - logger.atError().log("Transaction log {} is invalid and no usable backup exists", transactionLogPath); + logger.atWarn().log("Transaction log {} is invalid and no usable backup transaction log exists. Either an " + + "initial Nucleus setup is ongoing or all config tlogs were corrupted", + transactionLogPath); } @SuppressWarnings("PMD.CloseResource")