Tizen 2.0 Release
[apps/core/preloaded/myfiles.git] / src / include / mf-log.h
1 /*
2  * Copyright 2013         Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.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://floralicense.org/license/
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
19 #ifndef __MF_LOG__
20 #define __MF_LOG__
21
22 #define MF_LOG_RESULT_FILE "/opt/usr/apps/org.tizen.myfile/data/log"
23 #define MF_LOG_FORMAT   "[%s] [%s] {%d} -- %s"
24
25 int mf_log_init();
26 void mf_log_finalize();
27 int mf_log_record(char *filename, const char *function, int line, char *fmt, ...);
28
29
30 #ifdef MYFILE_CRITICAL_LOG
31 #define MF_LOG_RECORD(fmt, arg...)      do { mf_log_record(__FILE__, __func__, __LINE__, fmt, ##arg); } while (0)
32 #else
33 #define MF_LOG_RECORD(fmt, arg...)      do { (void)0; }while (0)
34 #endif
35
36 #endif