diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-10 12:37:16 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-10 12:37:16 +1300 |
commit | 1c9e795245c5da0ea896a4824fb41c9542857ecc (patch) | |
tree | 648fb9b7ff614245049c111cd2362821abcb1e9a /src/reports/mod.rs | |
parent | dedd999b8f923641dce512c21db5528d32356cc6 (diff) | |
download | assembler-1c9e795245c5da0ea896a4824fb41c9542857ecc.zip |
Import from the log and ansi crates once in the reports module
This is tidier than duplicate imports in every file of the module.
Diffstat (limited to 'src/reports/mod.rs')
-rw-r--r-- | src/reports/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reports/mod.rs b/src/reports/mod.rs index 9ab3da3..c2e941d 100644 --- a/src/reports/mod.rs +++ b/src/reports/mod.rs @@ -6,8 +6,8 @@ pub use source_hierarchy::*; use crate::*; -use ansi::*; -use log::LogLevel; +pub use log::LogLevel; +pub use ansi::*; pub fn report_source_issue(level: LogLevel, context: &Context, message: &str) { |