Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -154,7 +154,7 @@ public class LwM2MTransportServerConfig implements LwM2MSecureServerConfig { |
154 | 154 | keyStoreValue = KeyStore.getInstance(keyStoreType); |
155 | 155 | keyStoreValue.load(inKeyStore, keyStorePassword == null ? null : keyStorePassword.toCharArray()); |
156 | 156 | } catch (Exception e) { |
157 | - log.error("Unable to lookup LwM2M keystore. Reason: " + e.getMessage(), e); | |
157 | + log.warn("Unable to lookup LwM2M keystore. Reason: {}, {}" , uri, e.getMessage()); | |
158 | 158 | // Absence of the key store should not block user from using plain LwM2M |
159 | 159 | // throw new RuntimeException("Failed to lookup LwM2M keystore: " + (uri != null ? uri.toString() : ""), e); |
160 | 160 | } | ... | ... |