Skip to content

Commit 403b57c

Browse files
committed
chore: messages
1 parent aa9d41d commit 403b57c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/compass-e2e-tests/tests/logging.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ describe('Logging and Telemetry integration', function () {
206206
c: 'COMPASS-DATA-SERVICE',
207207
id: 1_001_000_014,
208208
ctx: 'Connection 0',
209-
msg: 'Connecting',
209+
msg: 'Connecting Started',
210210
attr: (actual: any) => {
211211
expect(actual.url).to.match(/^mongodb:\/\/127.0.0.1:27091/);
212212
expect(actual.csfle).to.equal(null);

packages/data-service/src/data-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ class DataServiceImpl extends WithLogContext implements DataService {
15791579
debug('connecting...');
15801580
this._isConnecting = true;
15811581

1582-
this._logger.info(mongoLogId(1_001_000_014), 'Connecting', {
1582+
this._logger.info(mongoLogId(1_001_000_014), 'Connecting Started', {
15831583
connectionId: this._id,
15841584
url: redactConnectionString(this._connectionOptions.connectionString),
15851585
csfle: this._csfleLogInformation(this._connectionOptions.fleOptions),

0 commit comments

Comments
 (0)