mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
use fast log
This commit is contained in:
parent
382fd127e4
commit
7d570fb4f3
23 changed files with 517 additions and 273 deletions
|
@ -23,11 +23,48 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
||||
#include <srs_kernel_log.hpp>
|
||||
|
||||
ILogContext::ILogContext()
|
||||
ISrsLog::ISrsLog()
|
||||
{
|
||||
}
|
||||
|
||||
ILogContext::~ILogContext()
|
||||
ISrsLog::~ISrsLog()
|
||||
{
|
||||
}
|
||||
|
||||
void ISrsLog::verbose(const char* /*tag*/, int /*context_id*/, const char* /*fmt*/, ...)
|
||||
{
|
||||
}
|
||||
|
||||
void ISrsLog::info(const char* /*tag*/, int /*context_id*/, const char* /*fmt*/, ...)
|
||||
{
|
||||
}
|
||||
|
||||
void ISrsLog::trace(const char* /*tag*/, int /*context_id*/, const char* /*fmt*/, ...)
|
||||
{
|
||||
}
|
||||
|
||||
void ISrsLog::warn(const char* /*tag*/, int /*context_id*/, const char* /*fmt*/, ...)
|
||||
{
|
||||
}
|
||||
|
||||
void ISrsLog::error(const char* /*tag*/, int /*context_id*/, const char* /*fmt*/, ...)
|
||||
{
|
||||
}
|
||||
|
||||
ISrsThreadContext::ISrsThreadContext()
|
||||
{
|
||||
}
|
||||
|
||||
ISrsThreadContext::~ISrsThreadContext()
|
||||
{
|
||||
}
|
||||
|
||||
void ISrsThreadContext::generate_id()
|
||||
{
|
||||
}
|
||||
|
||||
int ISrsThreadContext::get_id()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue