From 812392d325a17bb3f784e453a2cc8282806c9012 Mon Sep 17 00:00:00 2001 From: R E Broadley Date: Thu, 17 May 2012 22:10:59 +0100 Subject: [PATCH] Include human readble format for nRequestTime. --- src/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.h b/src/net.h index fa6f70086..73e16966f 100644 --- a/src/net.h +++ b/src/net.h @@ -298,7 +298,7 @@ public: // the key is the earliest time the request can be sent int64& nRequestTime = mapAlreadyAskedFor[inv]; if (fDebugNet) - printf("askfor %s %"PRI64d"\n", inv.ToString().c_str(), nRequestTime); + printf("askfor %s %"PRI64d" (%s)\n", inv.ToString().c_str(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime/1000000).c_str()); // Make sure not to reuse time indexes to keep things in the same order int64 nNow = (GetTime() - 1) * 1000000;