From 9a74e04c6c58fe5f037c73ebf4ed8d15afa47d7c Mon Sep 17 00:00:00 2001 From: Antoine Arlaud Date: Tue, 16 Apr 2024 10:55:43 +0200 Subject: [PATCH] fix: Adjusting traces and trigger release --- lib/client/index.ts | 2 +- lib/server/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client/index.ts b/lib/client/index.ts index 1176927b1..916f6c201 100644 --- a/lib/client/index.ts +++ b/lib/client/index.ts @@ -38,7 +38,7 @@ process.on('uncaughtException', (error) => { export const main = async (clientOpts: ClientOpts) => { try { - logger.info({ version }, 'running in client mode'); + logger.info({ version }, 'Broker starting in client mode'); const brokerClientId = uuidv4(); logger.info({ brokerClientId }, 'generated broker client id'); diff --git a/lib/server/index.ts b/lib/server/index.ts index 723013399..0a60668c7 100644 --- a/lib/server/index.ts +++ b/lib/server/index.ts @@ -13,7 +13,7 @@ import { getForwardHttpRequestHandler } from './socketHandlers/initHandlers'; import { loadAllFilters } from '../common/filter/filtersAsync'; export const main = async (serverOpts: ServerOpts) => { - logger.info({ version }, 'running in server mode'); + logger.info({ version }, 'Broker starting in server mode'); // start the local webserver to listen for relay requests const { app, server } = webserver(serverOpts.config, serverOpts.port);