From f9e7a1ba59b6f63faac0c235a386d59e84de5d7f Mon Sep 17 00:00:00 2001 From: 3lpsy <8757851+3lpsy@users.noreply.github.com> Date: Fri, 28 Mar 2025 18:45:11 -0500 Subject: [PATCH] typo --- plugins/log/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/log/src/lib.rs b/plugins/log/src/lib.rs index 3c964fd1..488a85d6 100644 --- a/plugins/log/src/lib.rs +++ b/plugins/log/src/lib.rs @@ -380,7 +380,7 @@ impl Builder { /// Skip the creation and global registration of a logger /// - /// If you wish to use your own global logger, you must call `skip_logger` so that the plugin does not attempt to set a second global logger. In this configuration, no logger will be created and the plugin's `log` command will rely on the result of `log::logger()`. You will be responsible for configuring the logger yourself and any included targets will be ignored. If ever initializing the plugin multiple times, such as if registering the plugin while testing, call this method to panicking when registering multiple loggers. For interacting with `tracing`, you can leverage the `tracing-log` logger to forward logs to `tracing` or enable the `tracing` for this plugin to emit events directly to the tracing system. Both scenarios require calling this method. + /// If you wish to use your own global logger, you must call `skip_logger` so that the plugin does not attempt to set a second global logger. In this configuration, no logger will be created and the plugin's `log` command will rely on the result of `log::logger()`. You will be responsible for configuring the logger yourself and any included targets will be ignored. If ever initializing the plugin multiple times, such as if registering the plugin while testing, call this method to avoid panicking when registering multiple loggers. For interacting with `tracing`, you can leverage the `tracing-log` logger to forward logs to `tracing` or enable the `tracing` feature for this plugin to emit events directly to the tracing system. Both scenarios require calling this method. /// ```rust /// static LOGGER: SimpleLogger = SimpleLogger; ///