Skip to content

Commit

Permalink
Change in severity of read messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
alja authored and abh3 committed Jun 30, 2016
1 parent 7bb4d44 commit d9efc93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/XrdFileCache/XrdFileCacheIOFileBlock.cc
Expand Up @@ -163,7 +163,7 @@ int IOFileBlock::Read (char *buff, long long off, int size)
int idx_first = off0/m_blocksize;
int idx_last = (off0+size-1)/m_blocksize;
int bytes_read = 0;
TRACEIO(Debug, "IOFileBlock::Read() "<< off << "@" << size << " block range ["<< idx_first << ", " << idx_last << "]");
TRACEIO(Dump, "IOFileBlock::Read() "<< off << "@" << size << " block range ["<< idx_first << ", " << idx_last << "]");

for (int blockIdx = idx_first; blockIdx <= idx_last; ++blockIdx )
{
Expand Down Expand Up @@ -212,7 +212,7 @@ int IOFileBlock::Read (char *buff, long long off, int size)
}
assert(readBlockSize);

TRACEIO(Debug, "IOFileBlock::Read() block[ " << blockIdx << "] read-block-size[" << readBlockSize << "], offset[" << readBlockSize << "] off = " << off );
TRACEIO(Dump, "IOFileBlock::Read() block[ " << blockIdx << "] read-block-size[" << readBlockSize << "], offset[" << readBlockSize << "] off = " << off );

long long min = blockIdx*m_blocksize;
if ( off < min) { assert(0); }
Expand Down

0 comments on commit d9efc93

Please sign in to comment.