Skip to content
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

Closed
swsnr opened this issue Jun 3, 2021 · 2 comments
Closed

Current function name of a log record? #455

swsnr opened this issue Jun 3, 2021 · 2 comments

Comments

@swsnr
Copy link
Contributor

swsnr commented Jun 3, 2021

The systemd journal supports three standard fields for the code location of a log message:

grafik

In a systemd logger we can easily fill CODE_FILE and CODE_LINE from record.file() and record.line() respectively, but what about CODE_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).

@KodrAus
Copy link
Contributor

KodrAus commented Nov 15, 2021

Hi @lunaryorn 👋

Unfortunately without some direct support from standard library this probably isn't something we'll be able to offer directly in log.

There are other approaches that libraries like tracing do with attribute macros on functions that would have visibility of the function name, but we haven't considered supporting alternative macros directly in log. Since there's unfortunately nothing really actionable here I'll go ahead and close this one now, but we can revisit in the future if a solution opens up.

@KodrAus KodrAus closed this as completed Nov 15, 2021
EFanZh pushed a commit to EFanZh/log that referenced this issue Jul 23, 2023
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jiahao XU <[email protected]>
@kanashimia
Copy link

kanashimia commented Nov 30, 2024

Hello @KodrAus, you can actually get the name of the current function using std::any::type_name.
As an example:

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.
There will be suffixes like ::{{closure}} or ::{{constant}} if it is called in a const block or a closure.

I think we need to at least wait for std::any::type_name to become const stable before actually having this as a feature,
but we can at least experiment with it now, as it is available on nightly.
Making this work in const contexts is very painful though.

User can already combine this with the kv feature of log to write a logger that will emit function names.
Or by customizing target:

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants