From cd47794403b6370c148a01f55d08e501ea417acb Mon Sep 17 00:00:00 2001 From: Alja Mrak-Tadel Date: Mon, 31 Oct 2016 14:16:44 -0700 Subject: [PATCH] Improve decription of entries. --- src/XrdFileCache/XrdFileCachePrint.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/XrdFileCache/XrdFileCachePrint.cc b/src/XrdFileCache/XrdFileCachePrint.cc index 91913bce59f..cbeddcf5594 100644 --- a/src/XrdFileCache/XrdFileCachePrint.cc +++ b/src/XrdFileCache/XrdFileCachePrint.cc @@ -84,7 +84,7 @@ void Print::printFile(const std::string& path) time_t creationTime = store.m_creationTime; strftime(creationBuff, 1000, "%c", localtime(&creationTime)); - printf("version %d, creation %s\n", cfi.GetVersion(), creationBuff); + printf("version %d, created %s\n", cfi.GetVersion(), creationBuff); printf("fileSize %lld, bufferSize %lld nBlocks %d nDownloaded %d %s\n", cfi.GetFileSize(),cfi.GetBufferSize(), cfi.GetSizeInBits(), cntd, @@ -138,7 +138,7 @@ void Print::printFile(const std::string& path) snprintf(ot, 500, "%02d:%02d:%02d", hours, min, sec); } - printf("%s, openedTime %s, bytesDisk=%lld, bytesRAM=%lld, bytesMissed=%lld\n", as, ot, it->BytesDisk, it->BytesRam, it->BytesMissed); + printf("%s, duration %s, bytesDisk=%lld, bytesRAM=%lld, bytesMissed=%lld\n", as, ot, it->BytesDisk, it->BytesRam, it->BytesMissed); } delete fh;