summaryrefslogtreecommitdiff
path: root/dali
diff options
context:
space:
mode:
authorEunki, Hong <eunkiki.hong@samsung.com>2024-07-10 17:21:07 +0900
committerEunki, Hong <eunkiki.hong@samsung.com>2024-07-10 17:21:07 +0900
commit7a3769bda4800dfa31bd76acaf2b39744a658eb1 (patch)
tree451b839f7ffc274d9463e354265b1bb17dd0205f /dali
parent96b6b5c3f8ae2889b9f57cc31e57d75c0ec33998 (diff)
downloaddali-adaptor-7a3769bda4800dfa31bd76acaf2b39744a658eb1.tar.gz
dali-adaptor-7a3769bda4800dfa31bd76acaf2b39744a658eb1.tar.bz2
dali-adaptor-7a3769bda4800dfa31bd76acaf2b39744a658eb1.zip
Add EOL for some log
Some logs at application initialized timing doesn't print '\n'. Change-Id: I7fa778e5e66a890b33d60fe6a40f89a61e54403f Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Diffstat (limited to 'dali')
-rw-r--r--dali/internal/adaptor/common/application-impl.cpp10
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();
}