refactor: properly import tracing macros

feat/users
Tomáš Mládek 2024-03-27 18:57:46 +01:00
parent 730cc02d7a
commit f2261998ee
3 changed files with 5 additions and 4 deletions

View File

@ -3,6 +3,7 @@ use std::{process::Command, sync::Arc};
use super::Extractor;
use anyhow::{anyhow, Result};
use lazy_static::lazy_static;
use tracing::{debug, trace};
use upend_base::{
addressing::Address,
constants::{ATTR_IN, ATTR_KEY, ATTR_LABEL, ATTR_OF},

View File

@ -1,10 +1,10 @@
use anyhow::anyhow;
use anyhow::Result;
use std::collections::HashMap;
use std::io::Read;
use std::path::Path;
use std::process::Command;
use anyhow::Result;
use tracing::{debug, trace};
use super::Previewable;

View File

@ -1,10 +1,10 @@
use anyhow::anyhow;
use anyhow::Result;
use std::collections::HashMap;
use std::io::Read;
use std::path::Path;
use std::process::Command;
use anyhow::Result;
use tracing::{debug, trace};
use super::Previewable;