Remove left logging in tests.

GitOrigin-RevId: 947ad46a22b8dafe4b5f107e6c6e07a7c92ec7cf
This commit is contained in:
levlam 2018-06-01 18:33:27 +03:00
parent 0166b9c8f9
commit 9cd334cc4b
2 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ class XReceiver final : public Actor {
};
TEST(Actors, simple_pass_event_arguments) {
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(DEBUG));
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
Scheduler scheduler;
scheduler.init();
@ -198,7 +198,7 @@ class PrintChar final : public Actor {
// Yield must add actor to the end of queue
//
TEST(Actors, simple_hand_yield) {
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(DEBUG));
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
Scheduler scheduler;
scheduler.init();
sb.clear();
@ -352,7 +352,7 @@ class MasterActor : public MsgActor {
} // namespace
TEST(Actors, call_after_destruct) {
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(DEBUG));
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
Scheduler scheduler;
scheduler.init();
{

View File

@ -109,7 +109,7 @@ class Manager final : public Actor {
};
void test_workers(int threads_n, int workers_n, int queries_n, int query_size) {
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(DEBUG));
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
ConcurrentScheduler sched;
sched.init(threads_n);