[pbs-devel] [PATCH proxmox v2 1/4] log: rename/move init functions
Gabriel Goller
g.goller at proxmox.com
Mon Feb 10 17:42:35 CET 2025
On 10.02.2025 15:37, Wolfgang Bumiller wrote:
>On Mon, Dec 09, 2024 at 11:46:03AM +0100, Gabriel Goller wrote:
>> +/// Inits a new tracing logger that prints to stderr or tasklog with the logging level specified in the
>> +/// environment variable `env_var`.
>> +///
>> +/// This logger is task-aware, which means if we are in a PBS task, we will retrieve the task-file
>> +/// and write to it. We'll only write to stderr if we are not in a task. If `env_var` doesn't exist
>> +/// or can't be read, use the `default_log_level`. The output will be very plain: no ansi, no
>> +/// timestamp, no level, just the message and it's
>> +/// fields.
>> +pub fn stderr_or_tasklog(
>> + env_var: &str,
>> + default_log_level: LevelFilter,
>> +) -> Result<(), anyhow::Error> {
>> + let log_level = get_env_variable(env_var, default_log_level);
>> +
>> + let registry = tracing_subscriber::registry()
>> + .with(
>> + plain_stderr_layer()
>> + .with_filter(filter_fn(|_metadata| !LogContext::exists()))
>
>^ This condition misses the `Level::ERROR` comparison while being
>suggested as a replacement for `init_cli_logger` which had it (not
>visible in the patch context lines, but it's there).
>If this is done on purpose, please explain it in the commit message.
Oops, yeah my bad, this should be
!LogContext::exists() || *metadata.level() == Level::ERROR
What do you think about the rest of the patch? I tried to implement this
with a builder pattern as well, but it turned out to be quite tricky
moving the layers around so I just wrote a ton of functions with long
names :(
>If this was an oversight, the functions in `lib.rs` could just call
>their recommended `init::` counterparts instead of reimplementing them.
Yep, will do that as well!
>> + .with_filter(log_level),
>> + )
>> + .with(TasklogLayer {}.with_filter(log_level));
>> +
>> + tracing::subscriber::set_global_default(registry)?;
>> + LogTracer::init_with_filter(log_level.as_log())?;
>> + Ok(())
>> +}
Thanks for the review!
More information about the pbs-devel
mailing list