Skip to content

Commit a076e8d

Browse files
committed
added service name when connected to each PORT
1 parent 2597a0a commit a076e8d

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

examples_new/microservices/auth/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const start = async () => {
2525
}
2626

2727
app.listen(PORT, async () => {
28-
console.log(`💥 App listening on ${PORT}`);
28+
console.log(`💥 Auth listening on ${PORT}`);
2929
});
3030
};
3131

examples_new/microservices/event-bus/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { app } from './app';
22

33
const start = () => {
44
app.listen(3005, () => {
5-
console.log('💥 App listening on port 3005');
5+
console.log('💥 Event-bus listening on port 3005');
66
});
77
};
88

examples_new/microservices/inventory/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const start = async () => {
2222
}
2323

2424
app.listen(PORT, async () => {
25-
console.log(`💥 App listening on ${PORT}`);
25+
console.log(`💥 Inventory listening on ${PORT}`);
2626
});
2727
};
2828

examples_new/microservices/items/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const start = async () => {
2222
}
2323

2424
app.listen(PORT, async () => {
25-
console.log(`App listening on ${PORT}`);
25+
console.log(`Items listening on ${PORT}`);
2626
});
2727
};
2828

examples_new/microservices/orders/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const start = async () => {
2121
}
2222

2323
app.listen(PORT, async () => {
24-
console.log(`💥 App listening on ${PORT}`);
24+
console.log(`💥 Orders listening on ${PORT}`);
2525
});
2626
};
2727

0 commit comments

Comments
 (0)