about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/flock
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-05-06 13:35:41 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-05-08 12:52:31 +1000
commit55b6ff8e41739404b0a6fb23e7f8fbff615a900d (patch)
tree2b32262464e0e5609ef6cd8521cb81bf4b7f8846 /compiler/rustc_data_structures/src/flock
parent351c0fa2a33baa3406a0c00034ff5e2cdac6fd7f (diff)
downloadrust-55b6ff8e41739404b0a6fb23e7f8fbff615a900d.tar.gz
rust-55b6ff8e41739404b0a6fb23e7f8fbff615a900d.zip
Remove `extern crate tracing`.
`use` is a nicer way of doing things.
Diffstat (limited to 'compiler/rustc_data_structures/src/flock')
-rw-r--r--compiler/rustc_data_structures/src/flock/windows.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/flock/windows.rs b/compiler/rustc_data_structures/src/flock/windows.rs
index 9be1065135a..7dc72661939 100644
--- a/compiler/rustc_data_structures/src/flock/windows.rs
+++ b/compiler/rustc_data_structures/src/flock/windows.rs
@@ -2,6 +2,7 @@ use std::fs::{File, OpenOptions};
 use std::io;
 use std::os::windows::prelude::*;
 use std::path::Path;
+use tracing::debug;
 
 use windows::{
     Win32::Foundation::{ERROR_INVALID_FUNCTION, HANDLE},