Skip to content

Commit 46894ef

Browse files
authored
Merge pull request #633 from rust-lang/feat/panic-info
Use Location::caller() for file and line info
2 parents e0d389c + c9e5e13 commit 46894ef

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

src/__private_api.rs

+12-14
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
use self::sealed::KVs;
44
use crate::{Level, Metadata, Record};
55
use std::fmt::Arguments;
6-
pub use std::{file, format_args, line, module_path, stringify};
6+
use std::panic::Location;
7+
pub use std::{format_args, module_path, stringify};
78

89
#[cfg(not(feature = "kv"))]
910
pub type Value<'a> = &'a str;
@@ -36,8 +37,7 @@ impl<'a> KVs<'a> for () {
3637
fn log_impl(
3738
args: Arguments,
3839
level: Level,
39-
&(target, module_path, file): &(&str, &'static str, &'static str),
40-
line: u32,
40+
&(target, module_path, loc): &(&str, &'static str, &'static Location),
4141
kvs: Option<&[(&str, Value)]>,
4242
) {
4343
#[cfg(not(feature = "kv"))]
@@ -52,8 +52,8 @@ fn log_impl(
5252
.level(level)
5353
.target(target)
5454
.module_path_static(Some(module_path))
55-
.file_static(Some(file))
56-
.line(Some(line));
55+
.file_static(Some(loc.file()))
56+
.line(Some(loc.line()));
5757

5858
#[cfg(feature = "kv")]
5959
builder.key_values(&kvs);
@@ -64,25 +64,23 @@ fn log_impl(
6464
pub fn log<'a, K>(
6565
args: Arguments,
6666
level: Level,
67-
target_module_path_and_file: &(&str, &'static str, &'static str),
68-
line: u32,
67+
target_module_path_and_loc: &(&str, &'static str, &'static Location),
6968
kvs: K,
7069
) where
7170
K: KVs<'a>,
7271
{
73-
log_impl(
74-
args,
75-
level,
76-
target_module_path_and_file,
77-
line,
78-
kvs.into_kvs(),
79-
)
72+
log_impl(args, level, target_module_path_and_loc, kvs.into_kvs())
8073
}
8174

8275
pub fn enabled(level: Level, target: &str) -> bool {
8376
crate::logger().enabled(&Metadata::builder().level(level).target(target).build())
8477
}
8578

79+
#[track_caller]
80+
pub fn loc() -> &'static Location<'static> {
81+
Location::caller()
82+
}
83+
8684
#[cfg(feature = "kv")]
8785
mod kv_support {
8886
use crate::kv;

src/macros.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ macro_rules! log {
3636
$crate::__private_api::log::<&_>(
3737
$crate::__private_api::format_args!($($arg)+),
3838
lvl,
39-
&($target, $crate::__private_api::module_path!(), $crate::__private_api::file!()),
40-
$crate::__private_api::line!(),
39+
&($target, $crate::__private_api::module_path!(), $crate::__private_api::loc()),
4140
&[$(($crate::__log_key!($key), $crate::__log_value!($key $(:$capture)* = $($value)*))),+]
4241
);
4342
}
@@ -50,8 +49,7 @@ macro_rules! log {
5049
$crate::__private_api::log(
5150
$crate::__private_api::format_args!($($arg)+),
5251
lvl,
53-
&($target, $crate::__private_api::module_path!(), $crate::__private_api::file!()),
54-
$crate::__private_api::line!(),
52+
&($target, $crate::__private_api::module_path!(), $crate::__private_api::loc()),
5553
(),
5654
);
5755
}

0 commit comments

Comments
 (0)