Revert "[Tizen] Added 'make clean' on each profile build."
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / tizen-logging.cpp
1 /*
2  * Copyright (c) 2017 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 "tizen-logging.h"
20
21 // EXTERNAL INCLUDES
22 #ifndef DALI_PROFILE_UBUNTU
23 // Dlog uses C style casts internally
24 #pragma GCC diagnostic push
25 #pragma GCC diagnostic ignored "-Wold-style-cast"
26 #include <dlog.h>
27 #else // DALI_PROFILE_UBUNTU
28 #include <cstdio>
29 #endif
30
31 namespace Dali
32 {
33
34 namespace TizenPlatform
35 {
36
37 void LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message)
38 {
39   const char* DALI_TAG = "DALI";
40
41 #ifndef DALI_PROFILE_UBUNTU
42   switch(level)
43   {
44     case Dali::Integration::Log::DebugInfo:
45       LOG(LOG_INFO, DALI_TAG, "%s", message.c_str());
46       break;
47     case Dali::Integration::Log::DebugWarning:
48       LOG(LOG_WARN, DALI_TAG, "%s", message.c_str());
49       break;
50     case Dali::Integration::Log::DebugError:
51       LOG(LOG_ERROR, DALI_TAG, "%s", message.c_str());
52       break;
53     default:
54       LOG(LOG_DEFAULT, DALI_TAG, "%s", message.c_str());
55       break;
56   }
57 #pragma GCC diagnostic pop
58 #else // DALI_PROFILE_UBUNTU
59   const char *format = NULL;
60   switch(level)
61   {
62     case Dali::Integration::Log::DebugInfo:
63       format = "\e[1;34mINFO:\e[21m %s: %s\e[0m";
64       break;
65     case Dali::Integration::Log::DebugWarning:
66       format = "\e[1;33mWARN:\e[21m %s: %s\e[0m";
67       break;
68     case Dali::Integration::Log::DebugError:
69       format = "\e[1;91mERROR:\e[21m %s: %s\e[0m";
70       break;
71     default:
72       format = ":\e[21m %s: %s\e[0m";
73       break;
74   }
75   printf(format, DALI_TAG, message.c_str());
76 #endif // DALI_PROFILE_UBUNTU
77 }
78
79 } // namespace TizenPlatform
80
81 } // namespace Dali