diff --git a/Services/server/src/app.ts b/Services/server/src/app.ts index 24231e7..10d2042 100644 --- a/Services/server/src/app.ts +++ b/Services/server/src/app.ts @@ -28,7 +28,7 @@ app.use(swaggerSpecs.basePath, router); app.use(errorHandler); app.listen(PORT, "0.0.0.0", () => - console.log(`Application is running on http://localhost:${PORT}`), + console.log(`[APP] Application is running on http://localhost:${PORT}`), ); rabbitmq.init(amqHandler).catch((e) => console.error(e)); diff --git a/Services/server/src/rabbitmq/index.ts b/Services/server/src/rabbitmq/index.ts index 8f5a1f1..e900210 100644 --- a/Services/server/src/rabbitmq/index.ts +++ b/Services/server/src/rabbitmq/index.ts @@ -12,7 +12,7 @@ export async function init(cb: (key: string, event: string) => boolean | Promise channel.assertQueue(queue, { durable: true }); channel.prefetch(1); - console.log("[RabbitMQ] Listening for message..."); + console.log("[AMQ] Listening for message..."); channel.consume( queue,