Skip to content

Commit

Permalink
[Server] Correct debug message interval for free space report.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed May 26, 2017
1 parent 0ecced4 commit 0625bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdOss/XrdOssCache.cc
Expand Up @@ -636,7 +636,7 @@ void *XrdOssCache::Scan(int cscanint)

// Try to prevent floodingthe log with scan messages
//
if (cscanint > 0 && cscanint < 60) dbgMsg = cscanint/60;
if (cscanint > 60) dbgMsg = cscanint/60;
else dbgMsg = 1;
dbgNoMsg = dbgMsg;

Expand Down

0 comments on commit 0625bb5

Please sign in to comment.