diff --git a/tdactor/test/actors_simple.cpp b/tdactor/test/actors_simple.cpp index c0a6c32b..46663762 100644 --- a/tdactor/test/actors_simple.cpp +++ b/tdactor/test/actors_simple.cpp @@ -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(); { diff --git a/tdactor/test/actors_workers.cpp b/tdactor/test/actors_workers.cpp index b97a258a..8a13f15b 100644 --- a/tdactor/test/actors_workers.cpp +++ b/tdactor/test/actors_workers.cpp @@ -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);