Skip to content

Commit eefacd3

Browse files
author
Meir Shpilraien (Spielrein)
authored
Remove module name from log info and warning log messages (#353)
* Remove module name from log info and warning log messages * Review fixes
1 parent 9fe7eac commit eefacd3

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/logging.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,7 @@ pub mod standard_log_implementation {
181181
record.args()
182182
)
183183
}
184-
_ => {
185-
format!(
186-
"'{}' {}",
187-
record.module_path().unwrap_or_default(),
188-
record.args()
189-
)
190-
}
184+
_ => record.args().to_string(),
191185
};
192186

193187
log_internal(self.0, record.level(), &message);

0 commit comments

Comments
 (0)