1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 15:27:54 +00:00

Provide upstream documentation link for performance warning

This commit is contained in:
Chocobo1 2022-03-07 01:44:40 +08:00
parent fad954df18
commit 294ea17222
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -1925,7 +1925,7 @@ void TorrentImpl::handleMetadataReceivedAlert(const lt::metadata_received_alert
void TorrentImpl::handlePerformanceAlert(const lt::performance_alert *p) const void TorrentImpl::handlePerformanceAlert(const lt::performance_alert *p) const
{ {
LogMsg((tr("Performance alert: ") + QString::fromStdString(p->message())) LogMsg((tr("Performance alert: %1. More info: %2").arg(QString::fromStdString(p->message())), u"https://libtorrent.org/reference-Alerts.html#enum-performance-warning-t"_qs)
, Log::INFO); , Log::INFO);
} }