diff options
-rw-r--r-- | dali/internal/adaptor/common/application-impl.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dali/internal/adaptor/common/application-impl.cpp b/dali/internal/adaptor/common/application-impl.cpp index 44d414601..2e24e1d30 100644 --- a/dali/internal/adaptor/common/application-impl.cpp +++ b/dali/internal/adaptor/common/application-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Samsung Electronics Co., Ltd. + * Copyright (c) 2024 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -104,14 +104,14 @@ void Application::PreInitialize(int* argc, char** argv[]) #ifdef UI_THREAD_AVAILABLE if(isUseUIThread) { - DALI_LOG_RELEASE_INFO("PRE_INITIALIZED with UI Threading"); + DALI_LOG_RELEASE_INFO("PRE_INITIALIZED with UI Threading\n"); gPreInitializedApplication->mUIThreadLoader = new UIThreadLoader(argc, argv); gPreInitializedApplication->mUIThreadLoader->Run([&]() { gPreInitializedApplication->CreateWindow(); }); } else #endif { - DALI_LOG_RELEASE_INFO("Only PRE_INITIALIZED"); + DALI_LOG_RELEASE_INFO("Only PRE_INITIALIZED\n"); gPreInitializedApplication->CreateWindow(); // Only create window } } @@ -265,7 +265,7 @@ void Application::CreateWindow() windowData.SetWindowType(mDefaultWindowType); windowData.SetFrontBufferRendering(mIsMainWindowFrontBufferRendering); - DALI_LOG_RELEASE_INFO("Create Default Window"); + DALI_LOG_RELEASE_INFO("Create Default Window\n"); WindowSystem::Initialize(); mIsSystemInitialized = true; @@ -369,7 +369,7 @@ void Application::OnInit() // If an application was pre-initialized, a window was made in advance if(mLaunchpadState == Launchpad::NONE) { - DALI_LOG_RELEASE_INFO("default Window is created in standalone"); + DALI_LOG_RELEASE_INFO("default Window is created in standalone\n"); CreateWindow(); } |