Skip to content

Commit 1ad2d59

Browse files
committed
feat: changing log position in mock.ts
feat #45 Signed-off-by: Hermione Dadheech <hermionedadheech@gmail.com>
1 parent 9b70a76 commit 1ad2d59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mock/mock.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export interface Config {
2727
Mode: string;
2828
}
2929
export function NewContext(conf: Config) {
30-
console.log("Keploy running in: ",process.env.KEPLOY_MODE," mode");
3130
let mode = MODE_TEST,
3231
path = conf !== undefined && conf.Path !== undefined ? conf.Path : "";
3332

@@ -60,6 +59,7 @@ export function NewContext(conf: Config) {
6059
if (Mode.Valid(conf.Mode)) {
6160
mode = conf.Mode;
6261
}
62+
console.log("Keploy running in: ",mode," mode");
6363
switch (mode) {
6464
case "test":
6565
if (conf.Name === "") {

0 commit comments

Comments
 (0)