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; ...@@ -64,7 +64,6 @@ extern const timespan relaxed_sleep_duration;
namespace logger { namespace logger {
extern string_view component_filter;
extern const atom_value console; extern const atom_value console;
extern string_view console_format; extern string_view console_format;
extern const atom_value console_verbosity; extern const atom_value console_verbosity;
......
...@@ -95,7 +95,6 @@ const timespan relaxed_sleep_duration = ms(10); ...@@ -95,7 +95,6 @@ const timespan relaxed_sleep_duration = ms(10);
namespace logger { namespace logger {
string_view component_filter = "";
const atom_value console = atom("none"); const atom_value console = atom("none");
string_view console_format = "%m"; string_view console_format = "%m";
const atom_value console_verbosity = default_log_level; const atom_value console_verbosity = default_log_level;
......
...@@ -353,8 +353,12 @@ Class-based Actors ...@@ -353,8 +353,12 @@ Class-based Actors
Implementing an actor using a class requires the following: 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. * Provide a constructor taking a reference of type ``actor_config&`` as first
* Override ``make_behavior`` for event-based actors and ``act`` for blocking actors. 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 Implementing actors with classes works for all kinds of actors and allows
simple management of state via member variables. However, composing states via simple management of state via member variables. However, composing states via
......
...@@ -361,8 +361,8 @@ at the moment. The recognized field identifiers are: ...@@ -361,8 +361,8 @@ at the moment. The recognized field identifiers are:
Filtering Filtering
~~~~~~~~~ ~~~~~~~~~
The two configuration options ``logger-component-filter`` and The two configuration options ``logger.component-blacklist`` and
``logger-verbosity`` reduce the amount of generated log events. The ``logger.(file|console)-verbosity`` reduce the amount of generated log events.
former is a list of excluded component names and the latter can increase the 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 reported severity level (but not decrease it beyond the level defined at compile
compile time). 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