summaryrefslogtreecommitdiff
path: root/src/mongo/util/background.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2012-04-01 00:00:48 -0400
committerEliot Horowitz <eliot@10gen.com>2012-04-01 00:00:48 -0400
commit0fbbd2c08ae2141bbf30b691ac981280dce3dd8b (patch)
tree5cc81c91425678d508befc59d6f4a6177310a2d3 /src/mongo/util/background.cpp
parent9b739251b5805d5c87090d33c6cc8491776baca1 (diff)
downloadmongo-0fbbd2c08ae2141bbf30b691ac981280dce3dd8b.tar.gz
lower log verbosity for background thread meta data
Diffstat (limited to 'src/mongo/util/background.cpp')
-rw-r--r--src/mongo/util/background.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/background.cpp b/src/mongo/util/background.cpp
index 50ade692e09..3d675421a4d 100644
--- a/src/mongo/util/background.cpp
+++ b/src/mongo/util/background.cpp
@@ -180,7 +180,7 @@ namespace mongo {
}
int ms = timer.millis();
- LOG( ms <= 3 ? 1 : 0 ) << "task: " << t->taskName() << " took: " << ms << "ms" << endl;
+ LOG( ms <= 3 ? 3 : 0 ) << "task: " << t->taskName() << " took: " << ms << "ms" << endl;
}
}
}