Commit 422ae141 authored by Dominik Charousset's avatar Dominik Charousset

Remove mentions of legacy component-filter option

parent cc7e8d5a
......@@ -64,7 +64,6 @@ extern const timespan relaxed_sleep_duration;
namespace logger {
extern string_view component_filter;
extern const atom_value console;
extern string_view console_format;
extern const atom_value console_verbosity;
......
......@@ -95,7 +95,6 @@ const timespan relaxed_sleep_duration = ms(10);
namespace logger {
string_view component_filter = "";
const atom_value console = atom("none");
string_view console_format = "%m";
const atom_value console_verbosity = default_log_level;
......
......@@ -353,8 +353,12 @@ Class-based Actors
Implementing an actor using a class requires the following:
* Provide a constructor taking a reference of type ``actor_config&`` as first argument, which is forwarded to the base class. The config is passed implicitly to the constructor when calling ``spawn``, which also forwards any number of additional arguments to the constructor.
* Override ``make_behavior`` for event-based actors and ``act`` for blocking actors.
* Provide a constructor taking a reference of type ``actor_config&`` as first
argument, which is forwarded to the base class. The config is passed
implicitly to the constructor when calling ``spawn``, which also forwards any
number of additional arguments to the constructor.
* Override ``make_behavior`` for event-based actors and ``act`` for blocking
actors.
Implementing actors with classes works for all kinds of actors and allows
simple management of state via member variables. However, composing states via
......
......@@ -361,8 +361,8 @@ at the moment. The recognized field identifiers are:
Filtering
~~~~~~~~~
The two configuration options ``logger-component-filter`` and
``logger-verbosity`` reduce the amount of generated log events. The
former is a list of excluded component names and the latter can increase the
reported severity level (but not decrease it beyond the level defined at
compile time).
The two configuration options ``logger.component-blacklist`` and
``logger.(file|console)-verbosity`` reduce the amount of generated log events.
The former is a list of excluded component names and the latter can increase the
reported severity level (but not decrease it beyond the level defined at compile
time).
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment