diff --git a/backend-services/friend-service/index.ts b/backend-services/friend-service/index.ts
index 341c54a1fe3c67c7282e4322f4ff0ca8e66d5bf4..2e12a94a2b168268eae5e933462d14147da1ab71 100644
--- a/backend-services/friend-service/index.ts
+++ b/backend-services/friend-service/index.ts
@@ -3,7 +3,6 @@ import { initializeRoutes } from './src/Startup/routes'
 import { MongoConnectionProvider } from './src/Database/MongoConnectionProvider'
 import jwt from 'jsonwebtoken'
 
-
 // Server configuration
 const server:Application = express();
 
@@ -15,7 +14,9 @@ export const MongoClient = new MongoConnectionProvider('friends','localhost', 27
 MongoClient.Connect()
 
 // MongoClient.Connection.dropDatabase()
-// console.log(jwt.sign('a', "abcdefg12345"))
+console.log(jwt.sign('a', "abcdefg12345"))
+console.log(jwt.sign('b', "abcdefg12345"))
+console.log(jwt.sign('c', "abcdefg12345"))
 
 server.listen(9003, ():void => {
   console.log('Service: Running here 👉 https://localhost:9003')