Fix fmt param type in logging

pull/1857/head
myl7 2021-12-06 03:37:13 +08:00
parent 71b652f8a1
commit 12d419d7fc
No known key found for this signature in database
GPG Key ID: 04F1013B67177C88
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ DHTSetup::setup(DownloadEngine* e, int family)
"server for UDP proxy for DHT and UDP trackers");
}
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 routingTable = make_unique<DHTRoutingTable>(localNode);