source: libcf/trunk/include/cf_log.h@ 108

Last change on this file since 108 was 108, checked in by cheese, 11 years ago

#1 remove log-level. log id is used as log level instead.

File size: 1.1 KB
Line 
1/**
2 * @file cf_log.h
3 * @author myusgun <myusgun@gmail.com>
4 *
5 * @remark
6 * 매핑 ID 값을 이용하여 해당 로그에 기록 <br />
7 * 로그 레벨을 적용할 때도 용이하며 define 이나 enumeration 등을 활용하면 좋음
8 *
9 * @example log.c
10 */
11#ifndef __CF_LOG_H__
12#define __CF_LOG_H__
13
14#include "cf_base.h"
15
16/** 로그 옵션 플래그 */
17typedef enum {
18 CF_LOG_DEFAULT_BUFFER = -1, /**< 기본 버퍼 크기 사용 */
19 CF_LOG_NO_BUFFER = 0, /**< 버퍼없이 파일에 바로 쓰기 */
20} E_CF_LOG_OPTION, CF_LOG_OPTION;
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26CF_EXPORT int
27CF_Log_Initialize (const int poolSize);
28
29CF_EXPORT int
30CF_Log_Finalize (void);
31
32CF_EXPORT int
33CF_Log_Open (const int mapid,
34 const char * path,
35 const int memsize);
36
37CF_EXPORT int
38CF_Log_Close (const int mapid);
39
40CF_EXPORT int
41CF_Log_Write (const int mapid,
42 const char * prefix,
43 const char * fmt, ...);
44
45CF_EXPORT int
46CF_Log_Flush (const int mapid);
47
48CF_EXPORT int
49CF_Log_SetMT (const int mapid,
50 const CF_BOOL flag);
51
52#ifdef __cplusplus
53}
54#endif
55
56#endif // #ifndef __CF_LOG_H__
Note: See TracBrowser for help on using the repository browser.