Skip to content

Commit cf56930

Browse files
authored
fix: remove accidentally left around eprintln (#612)
1 parent 5617078 commit cf56930

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/generation/generate.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2238,7 +2238,6 @@ fn gen_import_callee<'a>(node: &Import<'a>, _context: &mut Context<'a>) -> Print
22382238
let mut items = PrintItems::new();
22392239
items.push_str("import");
22402240
// for now, just be simple and force this on one line
2241-
eprintln!("NODE: {:?}", node.phase());
22422241
match node.phase() {
22432242
ImportPhase::Evaluation => {
22442243
// nothing to do

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
#![allow(clippy::needless_lifetimes)] // todo: enable this in the future
88
#![deny(clippy::disallowed_methods)]
99
#![deny(clippy::disallowed_types)]
10+
#![deny(clippy::print_stderr)]
11+
#![deny(clippy::print_stdout)]
1012

1113
pub mod configuration;
1214
mod format_text;

0 commit comments

Comments
 (0)