X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fminicontrol-log.h;h=b11cf888601f3238e7ac5ff6a286501905d80a8a;hb=refs%2Ftags%2Fsubmit%2Ftizen_2.3.1%2F20150915.072836;hp=209fdbe131819489e7fcedc418df390b950da9a1;hpb=8dc1bc1da94a2ecb86b68894addd5c0683fcffb0;p=apps%2Fhome%2Fminicontrol.git diff --git a/include/minicontrol-log.h b/include/minicontrol-log.h index 209fdbe..b11cf88 100755 --- a/include/minicontrol-log.h +++ b/include/minicontrol-log.h @@ -1,14 +1,14 @@ /* - * Copyright 2012 Samsung Electronics Co., Ltd + * Copyright (c) 2013-2015 Samsung Electronics Co., Ltd All Rights Reserved * - * Licensed under the Flora License, Version 1.0 (the "License"); + * Licensed under the Apache License, Version 2.0 (the License); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.tizenopensource.org/license + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, + * distributed under the License is distributed on an AS IS BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. @@ -27,25 +27,25 @@ #undef LOG_TAG #endif -#define LOG_TAG "libminicontrol" +#define LOG_TAG "MINICONTROL" #define DBG(fmt , args...) \ do{ \ - LOGD("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ + SECURE_LOGD("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ } while(0) #define INFO(fmt , args...) \ do{ \ - LOGI("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ + SECURE_LOGI("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ } while(0) #define WARN(fmt , args...) \ do{ \ - LOGI("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ + SECURE_LOGW("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ } while(0) #define ERR(fmt , args...) \ do{ \ - LOGI("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ + SECURE_LOGE("[%s : %d] "fmt"\n",__func__,__LINE__,##args ); \ } while(0) #else /* MINICTRL_USE_DLOG */