We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 01c396a + 1199f7d commit 243c874Copy full SHA for 243c874
src/logger.rs
@@ -153,6 +153,7 @@ impl LogWriter for Writer {
153
#[cfg(not(feature = "uniffi"))]
154
log::logger().log(
155
&builder
156
+ .target(record.module_path)
157
.module_path(Some(record.module_path))
158
.line(Some(record.line))
159
.args(format_args!("{}", record.args))
@@ -161,6 +162,7 @@ impl LogWriter for Writer {
161
162
#[cfg(feature = "uniffi")]
163
164
165
+ .target(&record.module_path)
166
.module_path(Some(&record.module_path))
167
168
0 commit comments