Files
mir_server/Gateway/srvlib/include/flog/file_logger.h
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

20 lines
381 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef _FILE_LOGGER_H_
#define _FILE_LOGGER_H_
/*********************************************************
* 日志文件记录器
* 将此类型在main函数中定义一份变量即可请勿在一个程序中多次使用此类型
*
*********************************************************/
class FileLogger
{
public:
FileLogger(const char* sLogFileNamePattern);
~FileLogger();
};
#endif