blob: 9a539951ba8b20d2b8b375b3428faac7acd4146f [file] [log] [blame]
// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This is designed to be imported by users as `use crate::log::*` so we should be judicious when
// adding to this module.
pub use {
crate::platform::log::*,
tracing::{debug, error, info, warn},
};
pub trait AsValue<'a> {
type ValueType;
fn as_value(&'a self) -> Self::ValueType;
}
impl<'a> AsValue<'a> for anyhow::Error {
type ValueType = &'a (dyn std::error::Error + 'static);
fn as_value(&'a self) -> Self::ValueType {
self.as_ref()
}
}