diff --git a/src/search/search_algorithms/exhaustive_search.cc b/src/search/search_algorithms/exhaustive_search.cc index ec0018e8d..bdef773ad 100644 --- a/src/search/search_algorithms/exhaustive_search.cc +++ b/src/search/search_algorithms/exhaustive_search.cc @@ -110,7 +110,6 @@ class ExhaustiveSearchFeature ExhaustiveSearchFeature() : TypedFeature("dump_reachable_search_space") { document_title("Exhaustive search"); document_synopsis("Dump the reachable state space."); - utils::add_log_options_to_feature(*this); } virtual shared_ptr create_component( @@ -119,6 +118,7 @@ class ExhaustiveSearchFeature opts.set("cost_type", ONE); opts.set("bound", numeric_limits::max()); opts.set("max_time", numeric_limits::infinity()); + opts.set("verbosity", utils::Verbosity::NORMAL); return make_shared(opts); } };