Module constellation::logging
source · Structs§
- A logger directed at the constellation from the compositor
- The constellation uses logging to perform crash reporting. The constellation receives all
warn!
,error!
andpanic!
messages, and generates a crash report when it receives a panic. A logger directed at the constellation from content processes #[derive(Clone)]
Functions§
- Rust uses
Record
for storing logging, but servo converts that to aLogEntry
. We do this so that we can record panics as well as log messages, and becauseRecord
does not implement serde (de)serialization, so cannot be used over an IPC channel.