Merge "Added Application::New(..., stylesheet)" into tizen
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / tizen-logging.cpp
1 /*
2  * Copyright (c) 2014 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 #include <dlog.h>
24 #else // DALI_PROFILE_UBUNTU
25 #include <cstdio>
26 #endif
27
28 namespace Dali
29 {
30
31 namespace TizenPlatform
32 {
33
34 void LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message)
35 {
36   const char* DALI_TAG = "DALI";
37
38 #ifndef DALI_PROFILE_UBUNTU
39   switch(level)
40   {
41     case Dali::Integration::Log::DebugInfo:
42       LOG(LOG_INFO, DALI_TAG, "%s", message.c_str());
43       break;
44     case Dali::Integration::Log::DebugWarning:
45       LOG(LOG_WARN, DALI_TAG, "%s", message.c_str());
46       break;
47     case Dali::Integration::Log::DebugError:
48       LOG(LOG_ERROR, DALI_TAG, "%s", message.c_str());
49       break;
50     default:
51       LOG(LOG_DEFAULT, DALI_TAG, "%s", message.c_str());
52       break;
53   }
54 #else // DALI_PROFILE_UBUNTU
55   const char *format = NULL;
56   switch(level)
57   {
58     case Dali::Integration::Log::DebugInfo:
59       format = "\e[1;34mINFO:\e[21m %s: %s\e[0m";
60       break;
61     case Dali::Integration::Log::DebugWarning:
62       format = "\e[1;33mWARN:\e[21m %s: %s\e[0m";
63       break;
64     case Dali::Integration::Log::DebugError:
65       format = "\e[1;91mERROR:\e[21m %s: %s\e[0m";
66       break;
67     default:
68       format = ":\e[21m %s: %s\e[0m";
69       break;
70   }
71   printf(format, DALI_TAG, message.c_str());
72 #endif // DALI_PROFILE_UBUNTU
73 }
74
75 } // namespace TizenPlatform
76
77 } // namespace Dali