From 76882d9941df7420b9feaf18b3116d44c84425ec Mon Sep 17 00:00:00 2001 From: Ingo Fischer Date: Thu, 23 Nov 2023 12:28:11 +0100 Subject: [PATCH] adjust a text --- .github/workflows/test-and-release.yml | 6 +++--- main.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index e4e151d..1a07fbf 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -30,7 +30,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [18.x] steps: - uses: actions/checkout@v3 @@ -61,7 +61,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x, 20.x] os: [ubuntu-latest, windows-latest, macos-latest] steps: @@ -97,7 +97,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.x] + node-version: [18.x] steps: - name: Checkout code diff --git a/main.js b/main.js index 4488d67..d181d8a 100644 --- a/main.js +++ b/main.js @@ -1405,7 +1405,7 @@ async function initDevice(deviceId, productKey, data, preserveFields, fromDiscov } }, value => { knownDevices[deviceId].noLocalConnection = !!value; - adapter.log.info(`${deviceId}: ${value ? 'Do not connect' : 'Connect'} locally to device`); + adapter.log.info(`${deviceId}: ${value ? 'Device will not be connected locally' : 'Trying to connect locally to the device'}`); if (knownDevices[deviceId].noLocalConnection) { disconnectDevice(deviceId); }