mirror of https://github.com/apache/cassandra
ninja fix to lower the logging level on StreamReader/CSR
This commit is contained in:
parent
0e393c9356
commit
ea38ddced2
|
|
@ -79,7 +79,7 @@ public class StreamReader
|
|||
*/
|
||||
public SSTableWriter read(ReadableByteChannel channel) throws IOException
|
||||
{
|
||||
logger.info("reading file from {}, repairedAt = {}", session.peer, repairedAt);
|
||||
logger.debug("reading file from {}, repairedAt = {}", session.peer, repairedAt);
|
||||
long totalSize = totalSize();
|
||||
|
||||
Pair<String, String> kscf = Schema.instance.getCF(cfId);
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ public class CompressedStreamReader extends StreamReader
|
|||
@Override
|
||||
public SSTableWriter read(ReadableByteChannel channel) throws IOException
|
||||
{
|
||||
logger.info("reading file from {}, repairedAt = {}", session.peer, repairedAt);
|
||||
logger.debug("reading file from {}, repairedAt = {}", session.peer, repairedAt);
|
||||
long totalSize = totalSize();
|
||||
|
||||
Pair<String, String> kscf = Schema.instance.getCF(cfId);
|
||||
|
|
|
|||
Loading…
Reference in New Issue