Change log level to warn from error when termux.properties file is missing

This commit is contained in:
agnostic-apollo
2021-03-24 04:57:35 +05:00
parent 92b804dc9c
commit 1bdf9bf2e3

View File

@@ -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;
}