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

For #299, add dash files.

This commit is contained in:
winlin 2017-02-11 21:14:28 +08:00
parent 7fd221ef63
commit 5e419c66f8
17 changed files with 354 additions and 123 deletions

View file

@ -147,7 +147,7 @@ void SrsFastLog::verbose(const char* tag, int context_id, const char* fmt, ...)
}
int size = 0;
if (!generate_header(false, tag, context_id, "verb", &size)) {
if (!generate_header(false, tag, context_id, "Verb", &size)) {
return;
}
@ -167,7 +167,7 @@ void SrsFastLog::info(const char* tag, int context_id, const char* fmt, ...)
}
int size = 0;
if (!generate_header(false, tag, context_id, "debug", &size)) {
if (!generate_header(false, tag, context_id, "Debug", &size)) {
return;
}
@ -187,7 +187,7 @@ void SrsFastLog::trace(const char* tag, int context_id, const char* fmt, ...)
}
int size = 0;
if (!generate_header(false, tag, context_id, "trace", &size)) {
if (!generate_header(false, tag, context_id, "Trace", &size)) {
return;
}
@ -207,7 +207,7 @@ void SrsFastLog::warn(const char* tag, int context_id, const char* fmt, ...)
}
int size = 0;
if (!generate_header(true, tag, context_id, "warn", &size)) {
if (!generate_header(true, tag, context_id, "Warn", &size)) {
return;
}
@ -227,7 +227,7 @@ void SrsFastLog::error(const char* tag, int context_id, const char* fmt, ...)
}
int size = 0;
if (!generate_header(true, tag, context_id, "error", &size)) {
if (!generate_header(true, tag, context_id, "Error", &size)) {
return;
}