info instead of warn

This commit is contained in:
Daniel Lugo 2021-12-14 11:53:27 -04:00
parent c8400ea3ea
commit d0928a09e4

View file

@ -54,7 +54,7 @@ const generateKeyPair = deviceId => {
const existingKey = nodeKeyPairs.get(deviceId)
if (existingKey) {
logger.warn('Device ID is already trusted')
logger.info('Device ID is already trusted')
return {
...existingKey,
publicKeyBase64: convertBufferToBase64(existingKey.publicKey),