Skip to content

Commit bb92cfb

Browse files
committed
Remove some info log
1 parent 0b4ec34 commit bb92cfb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/src/cpu.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ impl<T: Sys> Cpu<T> {
205205
None => return,
206206
};
207207

208-
info!("Interrupted: {:02x}", value);
208+
debug!("Interrupted: {:02x}", value);
209209

210210
self.interrupted(value);
211211
}
@@ -488,7 +488,7 @@ impl<T: Sys> Cpu<T> {
488488
/// Add 1 to pc unless HALT bug is triggerred
489489
fn inc_pc(&mut self) {
490490
if self.halt_bug {
491-
info!("Halt bug");
491+
debug!("Halt bug");
492492
self.halt_bug = false;
493493
} else {
494494
self.set_pc(self.get_pc().wrapping_add(1));

core/src/mbc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ impl Mbc1 {
100100
fn on_write(&mut self, addr: u16, value: u8) {
101101
if addr <= 0x1fff {
102102
if value & 0xf == 0x0a {
103-
info!("External RAM enabled");
103+
debug!("External RAM enabled");
104104
self.ram_enable = true;
105105
} else {
106-
info!("External RAM disabled");
106+
debug!("External RAM disabled");
107107
self.ram_enable = false;
108108
self.hw.get().borrow_mut().save_ram(&self.ram);
109109
}

0 commit comments

Comments
 (0)