mirror of https://github.com/procxx/kepka.git
Add logging for libtgvoip when we have DebugLogs.
This commit is contained in:
parent
b3d5ac1660
commit
3b46382550
|
@ -419,6 +419,18 @@ void Call::createAndStartController(const MTPDphoneCall &call) {
|
||||||
config.enableAGC = true;
|
config.enableAGC = true;
|
||||||
config.init_timeout = Global::CallConnectTimeoutMs() / 1000;
|
config.init_timeout = Global::CallConnectTimeoutMs() / 1000;
|
||||||
config.recv_timeout = Global::CallPacketTimeoutMs() / 1000;
|
config.recv_timeout = Global::CallPacketTimeoutMs() / 1000;
|
||||||
|
if (cDebug()) {
|
||||||
|
auto callLogFolder = cWorkingDir() + qsl("DebugLogs");
|
||||||
|
auto callLogPath = callLogFolder + qsl("/last_call_log.txt");
|
||||||
|
auto callLogNative = QFile::encodeName(QDir::toNativeSeparators(callLogPath));
|
||||||
|
auto callLogBytesSrc = gsl::as_bytes(gsl::make_span(callLogNative));
|
||||||
|
auto callLogBytesDst = gsl::as_writeable_bytes(gsl::make_span(config.logFilePath));
|
||||||
|
if (callLogBytesSrc.size() + 1 <= callLogBytesDst.size()) { // +1 - zero-terminator
|
||||||
|
QFile(callLogPath).remove();
|
||||||
|
QDir().mkpath(callLogFolder);
|
||||||
|
base::copy_bytes(callLogBytesDst, callLogBytesSrc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
std::vector<Endpoint> endpoints;
|
std::vector<Endpoint> endpoints;
|
||||||
ConvertEndpoint(endpoints, call.vconnection.c_phoneConnection());
|
ConvertEndpoint(endpoints, call.vconnection.c_phoneConnection());
|
||||||
|
|
Loading…
Reference in New Issue