fixed broken DHT round trip logging

This commit is contained in:
Arvid Norberg 2008-12-31 18:49:28 +00:00
parent 0cfbce92f7
commit cf7a6e6029
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ bool rpc_manager::incoming(msg const& m)
}
#ifdef TORRENT_DHT_VERBOSE_LOGGING
std::ofstream reply_stats("libtorrent_logs/round_trip_ms.log", std::ios::app);
std::ofstream reply_stats("round_trip_ms.log", std::ios::app);
reply_stats << m.addr << "\t" << total_milliseconds(time_now() - o->sent)
<< std::endl;
#endif