- changed some messages from BX_INFO to BX_DEBUG so that they wouldn't

show up by default.
This commit is contained in:
Bryce Denney 2001-05-22 18:48:31 +00:00
parent 36b2a8266b
commit d7d75a7bdc
4 changed files with 7 additions and 7 deletions

View File

@ -167,14 +167,14 @@ BX_CPU_C::BX_CPU_C(void)
#endif #endif
BX_INSTR_INIT(); BX_INSTR_INIT();
BX_INFO(( "Init.\n")); BX_DEBUG(( "Init.\n"));
} }
BX_CPU_C::~BX_CPU_C(void) BX_CPU_C::~BX_CPU_C(void)
{ {
BX_INSTR_SHUTDOWN(); BX_INSTR_SHUTDOWN();
BX_INFO(( "Exit.\n")); BX_DEBUG(( "Exit.\n"));
} }

View File

@ -46,13 +46,13 @@ bx_cmos_c::bx_cmos_c(void)
{ {
setprefix("[CMOS]"); setprefix("[CMOS]");
settype(CMOSLOG); settype(CMOSLOG);
BX_INFO(("Init.\n")); BX_DEBUG(("Init.\n"));
} }
bx_cmos_c::~bx_cmos_c(void) bx_cmos_c::~bx_cmos_c(void)
{ {
// nothing for now // nothing for now
BX_INFO(("Exit.\n")); BX_DEBUG(("Exit.\n"));
} }

View File

@ -79,7 +79,7 @@ BX_MEM_C::~BX_MEM_C(void)
delete this->vector; delete this->vector;
} }
else { 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 #endif // #if BX_PROVIDE_CPU_MEMORY

View File

@ -111,7 +111,7 @@ state_file::state_file (const char *name, const char *options)
UNUSED(name); UNUSED(name);
UNUSED(options); UNUSED(options);
init(); init();
BX_INFO(( "Init(const char *, const char *).\n" )); BX_DEBUG(( "Init(const char *, const char *).\n" ));
} }
state_file::state_file (FILE *f) state_file::state_file (FILE *f)
@ -123,5 +123,5 @@ state_file::state_file (FILE *f)
state_file::~state_file() state_file::~state_file()
{ {
BX_INFO(("Exit.\n")); BX_DEBUG(("Exit.\n"));
} }