1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Refine typo in app.

This commit is contained in:
winlin 2019-04-30 08:24:52 +08:00
parent aac8a13f42
commit 45009785fb
27 changed files with 409 additions and 703 deletions

View file

@ -32,24 +32,21 @@
#include <srs_app_reload.hpp>
#include <srs_service_log.hpp>
/**
* we use memory/disk cache and donot flush when write log.
* it's ok to use it without config, which will log to console, and default trace level.
* when you want to use different level, override this classs, set the protected _level.
*/
// Use memory/disk cache and donot flush when write log.
// it's ok to use it without config, which will log to console, and default trace level.
// when you want to use different level, override this classs, set the protected _level.
class SrsFastLog : public ISrsLog, public ISrsReloadHandler
{
// for utest to override
protected:
// defined in SrsLogLevel.
private:
// Defined in SrsLogLevel.
SrsLogLevel level;
private:
char* log_data;
// log to file if specified srs_log_file
// Log to file if specified srs_log_file
int fd;
// whether log to file tank
// Whether log to file tank
bool log_to_file_tank;
// whether use utc time.
// Whether use utc time.
bool utc;
public:
SrsFastLog();