12#ifndef __HIVE_LOGGER_H__
13#define __HIVE_LOGGER_H__
54 typedef std::function<void(std::string
const & tag, std::string
const & level, std::string
const & logMessage)>
onLogger;
72 static void log(
const char * format, ...);
Log의 노출 정도를 조정하는 로그 필터 core와 service 로그의 필터를 각각 조정 가능하다.
Definition: HIVE_Logger.h:93
LogType serviceLog
serviceLog filter type.
Definition: HIVE_Logger.h:98
LogType coreLog
coreLog filter type.
Definition: HIVE_Logger.h:97
로그 정보를 기록하는 클래스 (네이티브 영역을 호출하기 때문에 부하를 고려해서 로그를 기록해야 한다.)
Definition: HIVE_Logger.h:47
static void log(const char *format,...)
Record log information (Logs should be recorded taking into account the load, because you are callin...
static void setLoggerListener(onLogger listener)
로그 메시지 발생 시 통지 받을 핸들러 설정
static bool isActivateLogging()
log 함수를 사용했을때 로그를 원격지 혹은 로컬에 출력하는지의 여부를 반환한다.
static void setLogFilter(LogFilter filter)
Hive Core/Service 로그의 노출 타입을 조정한다.
std::function< void(std::string const &tag, std::string const &level, std::string const &logMessage)> onLogger
로그 메시지 발생 시 통지 핸들러 정의
Definition: HIVE_Logger.h:54
LogType
로거 타입 형태
Definition: HIVE_Logger.h:28