mirror of https://github.com/aria2/aria2
Fix fmt param type in logging
parent
71b652f8a1
commit
12d419d7fc
|
@ -159,7 +159,7 @@ DHTSetup::setup(DownloadEngine* e, int family)
|
||||||
"server for UDP proxy for DHT and UDP trackers");
|
"server for UDP proxy for DHT and UDP trackers");
|
||||||
}
|
}
|
||||||
A2_LOG_DEBUG(fmt("Connected to SOCKS5 relay server %s:%u for UDP proxy",
|
A2_LOG_DEBUG(fmt("Connected to SOCKS5 relay server %s:%u for UDP proxy",
|
||||||
host, port));
|
host.c_str(), port));
|
||||||
}
|
}
|
||||||
auto tracker = std::make_shared<DHTMessageTracker>();
|
auto tracker = std::make_shared<DHTMessageTracker>();
|
||||||
auto routingTable = make_unique<DHTRoutingTable>(localNode);
|
auto routingTable = make_unique<DHTRoutingTable>(localNode);
|
||||||
|
|
Loading…
Reference in New Issue