aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEightFactorial <29801334+EightFactorial@users.noreply.github.com>2025-08-02 22:39:00 -0700
committerGitHub <noreply@github.com>2025-08-03 00:39:00 -0500
commit013cd9f17674a4939d885ef91b7058b5a59d9ae1 (patch)
treef3ad09cf2a23a834a582d3694fb8a9087ba12c37
parent37b124a2b65a8a90b8f72b76b26e22d712ad944e (diff)
downloadazalea-drasl-013cd9f17674a4939d885ef91b7058b5a59d9ae1.tar.xz
Add FAQ to README (#231)
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index ddc92f1f..8b0e215a 100644
--- a/README.md
+++ b/README.md
@@ -69,3 +69,11 @@ Azalea has support for Bevy plugins, which can significantly alter its functiona
- [azalea-rs/azalea-hax](https://github.com/azalea-rs/azalea-hax) - Anti-knockback.
If you've created your own plugin for Azalea, please create a PR to add it to this list :).
+
+## FAQ
+
+- There's too many console messages, how do I disable them?
+
+ You can disable all console messages by setting the `RUST_LOG` environment variable to `off`, or you can filter log messages by setting specific log levels. For example, to disable only pathfinding logs, you can set `RUST_LOG=azalea::pathfinder=off`.
+
+ See the [`env_logger`](https://docs.rs/env_logger/latest/env_logger/) crate documentation for more information.