10000 dump and dump_2 with println instead log · sha0coder/libscemu@fe2e44e · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit fe2e44e

Browse files
committed
dump and dump_2 with println instead log
1 parent 09ae1bf commit fe2e44e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/emu/maps.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ impl Maps {
571571
Err(n) => " -utf8err- ".to_string(),
572572
};
573573

574-
log::info!(" {}", s);
574+
println!(" {}", s);
575575
}
576576
}
577577

@@ -586,7 +586,7 @@ impl Maps {
586586
count += 1;
587587
print!("{:02x} ", b);
588588
if count >= amount {
589-
log::info!("");
589+
println!("");
590590
return;
591591
}
592592
}
@@ -597,7 +597,7 @@ impl Maps {
597597
Err(n) => " -utf8err- ".to_string(),
598598
};
599599

600-
log::info!(" {}", s);
600+
println!(" {}", s);
601601
}
602602
}
603603

0 commit comments

Comments
 (0)
0