diff --git a/docker-compose.yml b/docker-compose.yml index 831bb74..f004f98 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -101,6 +101,8 @@ services: context: . dockerfile: Dockerfile target: runner + # env_file: + # - .env ports: - "${PORT}:${PORT}" environment: diff --git a/internal/web_server/handlers/notification_handler.go b/internal/web_server/handlers/notification_handler.go index f659d8e..7a61c39 100644 --- a/internal/web_server/handlers/notification_handler.go +++ b/internal/web_server/handlers/notification_handler.go @@ -729,6 +729,7 @@ func (h *Handler) SendTestPushNotification(c *fiber.Ctx) error { message := c.FormValue("message", "This is a test push notification from Yimaru Backend") h.mongoLoggerSvc.Info("FCM_SERVICE_ACCOUNT_KEY value during test-push call", zap.String("fcm_service_account_key", h.Cfg.FCMServiceAccountKey), + zap.String("db_url", h.Cfg.DbUrl), ) userID, ok := c.Locals("user_id").(int64)