From 1bdf9bf2e3967315268c947fd98d48ebb7c1bf38 Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Wed, 24 Mar 2021 04:57:35 +0500 Subject: [PATCH] Change log level to warn from error when termux.properties file is missing --- .../com/termux/app/settings/properties/SharedProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/termux/app/settings/properties/SharedProperties.java b/app/src/main/java/com/termux/app/settings/properties/SharedProperties.java index 87f32eae..d2dfc417 100644 --- a/app/src/main/java/com/termux/app/settings/properties/SharedProperties.java +++ b/app/src/main/java/com/termux/app/settings/properties/SharedProperties.java @@ -230,7 +230,7 @@ public class SharedProperties { Properties properties = new Properties(); if (propertiesFile == null) { - Logger.logError(LOG_TAG, "Not loading properties since file is null"); + Logger.logWarn(LOG_TAG, "Not loading properties since file is null"); return properties; }