Changeset 6081
- Timestamp:
- Sep 30, 2019 6:08:48 AM (5 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/endpoint.hpp
r6074 r6081 1098 1098 /** 1099 1099 * Write a log entry. 1100 * Application must implement its own custom LogWriter and 1101 * this function will then call the LogWriter::write() method. 1102 * Note that this function does not call PJSIP's internal 1103 * logging functionality. For that, you should use 1104 * utilLogWrite(prmLevel, prmSender, prmMsg) above. 1100 1105 * 1101 1106 * @param e The log entry. -
pjproject/trunk/pjsip/src/pjsua2/endpoint.cpp
r6074 r6081 561 561 void Endpoint::utilLogWrite(LogEntry &entry) 562 562 { 563 if (!writer) return; 564 563 565 if (mainThreadOnly && pj_thread_this() != mainThread) { 564 566 PendingLog *job = new PendingLog;
Note: See TracChangeset
for help on using the changeset viewer.