Module bevy_internal::log
source · Expand description
Logging capabilities
Modules
- The Bevy Log Prelude.
- Utilities for implementing and composing
tracing
subscribers.
Macros
- Constructs an event at the debug level.
- Call
debug!
once per call site. - Constructs a span at the debug level.
- Constructs an event at the error level.
- Call
error!
once per call site. - Constructs a span at the error level.
- Constructs an event at the info level.
- Call
info!
once per call site. - Constructs a span at the info level.
- Call some expression only once per call site.
- Constructs an event at the trace level.
- Call
trace!
once per call site. - Constructs a span at the trace level.
- Constructs an event at the warn level.
- Call
warn!
once per call site. - Constructs a span at the warn level.
Structs
- Describes the level of verbosity of a span or event.
- Adds logging to Apps. This plugin is part of the
DefaultPlugins
. Adding this plugin will setup a collector appropriate to your target platform:
Type Aliases
- Alias for a boxed
Subscriber
.