/*!
This module provides a "logger" that does not output anything anywhere but satisfies the public API.
*/usecrate::log::LogConfiguration;implLogConfiguration{/// Sets the global logger to conform to this [`LogConfiguration`].
pub(incrate::log)fnset_config(&mutself){// No global logger. We still keep up appearances.
log::set_max_level(self.global_log_level);}}