Skip to content

Commit

Permalink
Merge pull request #744 from snyk/fix/trigger-release-after-contribution
Browse files Browse the repository at this point in the history
fix: Adjusting traces and trigger release
  • Loading branch information
aarlaud authored Apr 16, 2024
2 parents 3c6d490 + 9a74e04 commit 4e22850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion lib/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4e22850

Please sign in to comment.