From 70672163bb576cb39a68b952eb63c02112738b82 Mon Sep 17 00:00:00 2001 From: wwylele Date: Thu, 5 May 2016 08:56:21 +0300 Subject: [PATCH] oops --- Log-Filters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Log-Filters.md b/Log-Filters.md index 41b5306..23a0d83 100644 --- a/Log-Filters.md +++ b/Log-Filters.md @@ -18,7 +18,7 @@ Otherwise, a complete list can be found in the source in [log.h](https://github. ## Log Filters -To configure the log filter, edit the configuration file (either `qt-config.ini` or `sdl-config.ini`) and change the `log_filter` setting. The filter string consists of a space-separated list of filter rules, each of the format `:`. `` is a log class name, with subclasses separated using periods. A rule for a given class also affects all of its subclasses. `*` wildcards are allowed and can be used to apply a rule to all classes or to all subclasses of a class without affecting the parent class. `` a severity level name which will be set as the minimum logging level of the matched classes. Rules are applied left to right, with later rules overriding previous ones in the sequence. +To configure the log filter, edit the configuration file (either `qt-config.ini` or `sdl2-config.ini`) and change the `log_filter` setting. The filter string consists of a space-separated list of filter rules, each of the format `:`. `` is a log class name, with subclasses separated using periods. A rule for a given class also affects all of its subclasses. `*` wildcards are allowed and can be used to apply a rule to all classes or to all subclasses of a class without affecting the parent class. `` a severity level name which will be set as the minimum logging level of the matched classes. Rules are applied left to right, with later rules overriding previous ones in the sequence. A few examples of filter rules: - `*:Info` -- Resets the level of all classes to Info.