File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,11 @@ class Log {
151
151
152
152
// This class represent a named domain-specific logger, responsible for pushing logs using the
153
153
// underlying `binlog::SessionWriter` class. This has a configured log level, so that logs on this
154
- // `Logger` with a level lower than the configured one are no-ops.
154
+ // `Logger` with a level lower than the configured one are no-ops. The level is configured based
155
+ // on rules matching `<root name>/<name>` in `CODEQL_EXTRACTOR_SWIFT_LOG_LEVELS` (see above).
156
+ // `<root name>` is what is provided to the global `Log::configure`, `<name>` is provided in the
157
+ // constructor. If no rule matches the name, the log level defaults to the minimum level of all
158
+ // outputs.
155
159
class Logger {
156
160
public:
157
161
explicit Logger (const std::string& name) : Logger(Log::getLoggerConfiguration(name)) {}
You can’t perform that action at this time.
0 commit comments