634d0b99535589c359eff20244531d3a1128f580
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / android / logging-android.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // FUNCTION HEADER
19 #include <dali/internal/system/common/logging.h>
20
21 // EXTERNAL INCLUDES
22 #include <log.h>
23
24 namespace Dali
25 {
26 namespace TizenPlatform
27 {
28 void LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message)
29 {
30   const char* DALI_TAG = "DALI";
31
32   switch(level)
33   {
34     case Dali::Integration::Log::DebugInfo:
35       __android_log_print(ANDROID_LOG_INFO, DALI_TAG, "%s", message.c_str());
36       break;
37     case Dali::Integration::Log::DebugWarning:
38       __android_log_print(ANDROID_LOG_WARN, DALI_TAG, "%s", message.c_str());
39       break;
40     case Dali::Integration::Log::DebugError:
41       __android_log_print(ANDROID_LOG_DEBUG, DALI_TAG, "%s", message.c_str());
42       break;
43     default:
44       __android_log_print(ANDROID_LOG_DEBUG, DALI_TAG, "%s", message.c_str());
45       break;
46   }
47 }
48
49 } // namespace TizenPlatform
50
51 } // namespace Dali