diff --git a/src/components/Splash/SplashRoot.tsx b/src/components/Splash/SplashRoot.tsx
index 068f256c176eb0af7d04ddf2f29bcedbb352df2f..af2214bb0e4170cb8c03548ba49ccf3d276e1fbd 100644
--- a/src/components/Splash/SplashRoot.tsx
+++ b/src/components/Splash/SplashRoot.tsx
@@ -194,6 +194,7 @@ const SplashRoot = ({ fadeTimer = 1000, children }: SplashRootProps) => {
       const startTime = performance.now()
       const transaction = Sentry.startTransaction({ name: 'Initialize app' })
       try {
+        console.groupCollapsed('Initialization logs')
         // init Terms
         const termsStatus = await initializationService.initConsent()
         if (subscribed) dispatch(updateTermsStatus(termsStatus))
@@ -354,6 +355,7 @@ const SplashRoot = ({ fadeTimer = 1000, children }: SplashRootProps) => {
         logApp.error(`[Initialization] Error : ${error}`)
         Sentry.captureException(error)
       } finally {
+        console.groupEnd()
         transaction.finish()
       }
     }