From 2215ef713e6dd18b005fa7fcb48b7ca374fe9bab Mon Sep 17 00:00:00 2001 From: Alja Mrak-Tadel Date: Fri, 7 Apr 2017 16:20:31 -0700 Subject: [PATCH] Downgrade severity of message in initLocalStat when info file is not complete. --- src/XrdFileCache/XrdFileCacheIOEntireFile.cc | 2 +- src/XrdFileCache/XrdFileCacheIOFileBlock.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/XrdFileCache/XrdFileCacheIOEntireFile.cc b/src/XrdFileCache/XrdFileCacheIOEntireFile.cc index a5f6e4e19e8..5969d09af66 100644 --- a/src/XrdFileCache/XrdFileCacheIOEntireFile.cc +++ b/src/XrdFileCache/XrdFileCacheIOEntireFile.cc @@ -129,7 +129,7 @@ int IOEntireFile::initCachedStat(const char* path) else { // file exist but can't read it - TRACEIO(Error, "IOEntireFile::initCachedStat failed to read file size from info file"); + TRACEIO(Debug, "IOEntireFile::initCachedStat info file is not complete"); } } else diff --git a/src/XrdFileCache/XrdFileCacheIOFileBlock.cc b/src/XrdFileCache/XrdFileCacheIOFileBlock.cc index c954224294a..0290cfda57f 100644 --- a/src/XrdFileCache/XrdFileCacheIOFileBlock.cc +++ b/src/XrdFileCache/XrdFileCacheIOFileBlock.cc @@ -213,7 +213,7 @@ int IOFileBlock::initLocalStat() else { // file exist but can't read it - TRACEIO(Error, "IOFileBlock::initCachedStat failed to read file size from info file"); + TRACEIO(Debug, "IOFileBlock::initCachedStat info file is not complete"); } } }