Uniformize tracing::* imports (hopefully fixes 32-bit build)

This commit is contained in:
Alex Auvolat
2022-07-15 18:31:19 +02:00
parent 4f38cadf6e
commit ac03fa7937
4 changed files with 3 additions and 4 deletions
-1
View File
@@ -345,7 +345,6 @@ pub fn recommended_map_size() -> usize {
#[cfg(target_pointer_width = "32")]
pub fn recommended_map_size() -> usize {
use log::warn;
warn!("LMDB is not recommended on 32-bit systems, database size will be limited");
1usize << 30
}