-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current function name of a log record? #455
Comments
Hi @lunaryorn 👋 Unfortunately without some direct support from standard library this probably isn't something we'll be able to offer directly in There are other approaches that libraries like |
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jiahao XU <[email protected]>
Hello @KodrAus, you can actually get the name of the current function using macro_rules! current_type_name {
() => {{
struct T;
std::any::type_name::<T>()
.trim_start_matches(concat!(module_path!(), "::"))
.trim_end_matches("::T")
}};
} It is a hack, but it works. I think we need to at least wait for User can already combine this with the macro_rules! make_log_funcs {
($d:tt, $($name:ident),*$(,)?) => {
$(
#[macro_export]
macro_rules! $name {
($d($d tt:tt)*) => {
log::$name!(target: func_name!(), $d($d tt)*)
}
}
)*
};
}
make_log_funcs![$, error, warn, info, debug, trace]; Are you ok with having this as an experimental feature? I'm willing to implement it. |
The systemd journal supports three standard fields for the code location of a log message:
In a systemd logger we can easily fill
CODE_FILE
andCODE_LINE
fromrecord.file()
andrecord.line()
respectively, but what aboutCODE_FUNCTION
?The record API doesn't have a corresponding field, and it looks as if Rust currently doesn't have a way to get the function name 😕
Is there any other means to get hold of the name of the function? It's not that important, but when it comes to logging the more information we have the better, and I think it'd be helpful to find the source of a log message even if you don't have the source code of the exact version at hands (e.g. in case a function got moved to another module).
The text was updated successfully, but these errors were encountered: