diff options
author | Randolph Tan <randolph@10gen.com> | 2016-02-19 16:01:55 -0500 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2016-02-22 17:01:56 -0500 |
commit | f8dda5860d94b91e236dc30d9e2622168dc4591d (patch) | |
tree | e8dda09fa8b4c9e97f047e965a2c6b4aef0bfb55 /src/mongo | |
parent | d8ee6353312a5639ae56454be62066d602eff818 (diff) | |
download | mongo-f8dda5860d94b91e236dc30d9e2622168dc4591d.tar.gz |
SERVER-22765 Remove unnecessary logging in sharding tests when running on continuous stepdown suite
Diffstat (limited to 'src/mongo')
-rw-r--r-- | src/mongo/shell/shardingtest.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/shell/shardingtest.js b/src/mongo/shell/shardingtest.js index 7b3d5a440ae..7e5ded35ca6 100644 --- a/src/mongo/shell/shardingtest.js +++ b/src/mongo/shell/shardingtest.js @@ -361,8 +361,8 @@ var ShardingTest = function(params) { print("ShardingTest " + this.getChunksString(ns)); }; - this.printShardingStatus = function() { - printShardingStatus(this.config); + this.printShardingStatus = function(verbose) { + printShardingStatus(this.config, verbose); }; this.printCollectionInfo = function(ns, msg) { |