info instead of warn
This commit is contained in:
parent
c8400ea3ea
commit
d0928a09e4
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ const generateKeyPair = deviceId => {
|
||||||
const existingKey = nodeKeyPairs.get(deviceId)
|
const existingKey = nodeKeyPairs.get(deviceId)
|
||||||
|
|
||||||
if (existingKey) {
|
if (existingKey) {
|
||||||
logger.warn('Device ID is already trusted')
|
logger.info('Device ID is already trusted')
|
||||||
return {
|
return {
|
||||||
...existingKey,
|
...existingKey,
|
||||||
publicKeyBase64: convertBufferToBase64(existingKey.publicKey),
|
publicKeyBase64: convertBufferToBase64(existingKey.publicKey),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue