Skip to content

Commit 38b2f0d

Browse files
committed
fix(MongoInstance): fix log in "run"
- fix spelling in logs in function "run"
1 parent 8020c5a commit 38b2f0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/mongodb-memory-server-core/src/util/MongoInstance.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ export default class MongoInstance {
119119
const launch = new Promise((resolve, reject) => {
120120
this.instanceReady = () => {
121121
this.isInstanceReady = true;
122-
this.debug('MongodbInstance: is ready!');
122+
this.debug('MongodbInstance: Instance is ready!');
123123
resolve({ ...this.childProcess });
124124
};
125125
this.instanceFailed = (err: any) => {
126-
this.debug(`MongodbInstance: is failed: ${err.toString()}`);
126+
this.debug(`MongodbInstance: Instance has failed: ${err.toString()}`);
127127
if (this.killerProcess) {
128128
this.killerProcess.kill();
129129
}

0 commit comments

Comments
 (0)