2 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include "tizen-logging.h"
22 #ifndef DALI_PROFILE_UBUNTU
24 #else // DALI_PROFILE_UBUNTU
31 namespace TizenPlatform
34 void LogMessage(Dali::Integration::Log::DebugPriority level, std::string& message)
36 const char* DALI_TAG = "DALI";
38 #ifndef DALI_PROFILE_UBUNTU
41 case Dali::Integration::Log::DebugInfo:
42 LOG(LOG_INFO, DALI_TAG, "%s", message.c_str());
44 case Dali::Integration::Log::DebugWarning:
45 LOG(LOG_WARN, DALI_TAG, "%s", message.c_str());
47 case Dali::Integration::Log::DebugError:
48 LOG(LOG_ERROR, DALI_TAG, "%s", message.c_str());
51 LOG(LOG_DEFAULT, DALI_TAG, "%s", message.c_str());
54 #else // DALI_PROFILE_UBUNTU
55 const char *format = NULL;
58 case Dali::Integration::Log::DebugInfo:
59 format = "\e[1;34mINFO:\e[21m %s: %s\e[0m";
61 case Dali::Integration::Log::DebugWarning:
62 format = "\e[1;33mWARN:\e[21m %s: %s\e[0m";
64 case Dali::Integration::Log::DebugError:
65 format = "\e[1;91mERROR:\e[21m %s: %s\e[0m";
68 format = ":\e[21m %s: %s\e[0m";
71 printf(format, DALI_TAG, message.c_str());
72 #endif // DALI_PROFILE_UBUNTU
75 } // namespace TizenPlatform