diff --git a/bochs/cpu/init.cc b/bochs/cpu/init.cc index 8f6858037..6645165a6 100644 --- a/bochs/cpu/init.cc +++ b/bochs/cpu/init.cc @@ -167,14 +167,14 @@ BX_CPU_C::BX_CPU_C(void) #endif BX_INSTR_INIT(); - BX_INFO(( "Init.\n")); + BX_DEBUG(( "Init.\n")); } BX_CPU_C::~BX_CPU_C(void) { BX_INSTR_SHUTDOWN(); - BX_INFO(( "Exit.\n")); + BX_DEBUG(( "Exit.\n")); } diff --git a/bochs/iodev/cmos.cc b/bochs/iodev/cmos.cc index aeee8c5ab..7c5c52924 100644 --- a/bochs/iodev/cmos.cc +++ b/bochs/iodev/cmos.cc @@ -46,13 +46,13 @@ bx_cmos_c::bx_cmos_c(void) { setprefix("[CMOS]"); settype(CMOSLOG); - BX_INFO(("Init.\n")); + BX_DEBUG(("Init.\n")); } bx_cmos_c::~bx_cmos_c(void) { // nothing for now - BX_INFO(("Exit.\n")); + BX_DEBUG(("Exit.\n")); } diff --git a/bochs/memory/misc_mem.cc b/bochs/memory/misc_mem.cc index adf3e4cd2..3c549f166 100644 --- a/bochs/memory/misc_mem.cc +++ b/bochs/memory/misc_mem.cc @@ -79,7 +79,7 @@ BX_MEM_C::~BX_MEM_C(void) delete this->vector; } else { - BX_INFO(("(%u) memory not freed as it wasn't allocated!\n", BX_SIM_ID)); + BX_DEBUG(("(%u) memory not freed as it wasn't allocated!\n", BX_SIM_ID)); } } #endif // #if BX_PROVIDE_CPU_MEMORY diff --git a/bochs/state_file.cc b/bochs/state_file.cc index df45d94d6..69cfa44bc 100644 --- a/bochs/state_file.cc +++ b/bochs/state_file.cc @@ -111,7 +111,7 @@ state_file::state_file (const char *name, const char *options) UNUSED(name); UNUSED(options); init(); - BX_INFO(( "Init(const char *, const char *).\n" )); + BX_DEBUG(( "Init(const char *, const char *).\n" )); } state_file::state_file (FILE *f) @@ -123,5 +123,5 @@ state_file::state_file (FILE *f) state_file::~state_file() { - BX_INFO(("Exit.\n")); + BX_DEBUG(("Exit.\n")); }