3
3
use self :: sealed:: KVs ;
4
4
use crate :: { Level , Metadata , Record } ;
5
5
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} ;
7
8
8
9
#[ cfg( not( feature = "kv" ) ) ]
9
10
pub type Value < ' a > = & ' a str ;
@@ -36,8 +37,7 @@ impl<'a> KVs<'a> for () {
36
37
fn log_impl (
37
38
args : Arguments ,
38
39
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 ) ,
41
41
kvs : Option < & [ ( & str , Value ) ] > ,
42
42
) {
43
43
#[ cfg( not( feature = "kv" ) ) ]
@@ -52,8 +52,8 @@ fn log_impl(
52
52
. level ( level)
53
53
. target ( target)
54
54
. 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 ( ) ) ) ;
57
57
58
58
#[ cfg( feature = "kv" ) ]
59
59
builder. key_values ( & kvs) ;
@@ -64,25 +64,23 @@ fn log_impl(
64
64
pub fn log < ' a , K > (
65
65
args : Arguments ,
66
66
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 ) ,
69
68
kvs : K ,
70
69
) where
71
70
K : KVs < ' a > ,
72
71
{
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 ( ) )
80
73
}
81
74
82
75
pub fn enabled ( level : Level , target : & str ) -> bool {
83
76
crate :: logger ( ) . enabled ( & Metadata :: builder ( ) . level ( level) . target ( target) . build ( ) )
84
77
}
85
78
79
+ #[ track_caller]
80
+ pub fn loc ( ) -> & ' static Location < ' static > {
81
+ Location :: caller ( )
82
+ }
83
+
86
84
#[ cfg( feature = "kv" ) ]
87
85
mod kv_support {
88
86
use crate :: kv;
0 commit comments