diff --git a/auth/src/index.ts b/auth/src/index.ts index 3ae8fdb..ac697ad 100644 --- a/auth/src/index.ts +++ b/auth/src/index.ts @@ -2,6 +2,7 @@ import mongoose from "mongoose"; import { app } from "./app"; const start = async () => { + console.log("Starting up..."); if (!process.env.JWT_KEY) { throw new Error("JWT_KEY must be defined"); } diff --git a/orders/src/index.ts b/orders/src/index.ts index aa042a0..bbbd10b 100644 --- a/orders/src/index.ts +++ b/orders/src/index.ts @@ -7,6 +7,7 @@ import { ExpirationCompleteListener } from "./events/listeners/expiration-comple import { PaymentCreatedListener } from "./events/listeners/payment-created-listener"; const start = async () => { + console.log("Starting Order Service..."); if (!process.env.JWT_KEY) { throw new Error("JWT_KEY must be defined"); } diff --git a/payments/src/index.ts b/payments/src/index.ts index fd7e48e..58924a7 100644 --- a/payments/src/index.ts +++ b/payments/src/index.ts @@ -8,6 +8,7 @@ import dotenv from 'dotenv'; dotenv.config(); const start = async () => { + console.log("Starting Payment Service..."); if (!process.env.JWT_KEY) { throw new Error("JWT_KEY must be defined"); }