Skip to content

Commit b379b62

Browse files
committed
add debug info for qproxy
1 parent 303bd5f commit b379b62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

models/qsim/proxy/proxy.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ qsim_proxy_t::qsim_proxy_t(char *StateName, char *AppName, uint64_t InterruptInt
1212
qsim_osd(NULL),
1313
interrupt_interval(InterruptInterval)
1414
{
15-
cout << "Loading Qsim state file ..." << endl;
15+
cerr << "Loading Qsim state file ..." << endl;
1616
qsim_osd = new Qsim::OSDomain(StateName);
1717

18-
cout << "Loading application ..." << endl;
18+
cerr << "Loading application ..." << endl;
1919
load_file(*qsim_osd, AppName);
2020

21-
cout << "Finished initializing Qsim" << endl;
21+
cerr << "Finished initializing Qsim" << endl;
2222

2323
/* Set Qsim callback functions */
2424
/* Setup the callbacks after loading state file */
@@ -36,7 +36,7 @@ qsim_proxy_t::qsim_proxy_t(char *StateName, char *AppName, uint64_t InterruptInt
3636

3737
qsim_proxy_t::~qsim_proxy_t()
3838
{
39-
cout << "Terminating Qsim" << endl;
39+
cerr << "Terminating Qsim" << endl;
4040
delete qsim_osd;
4141
}
4242

0 commit comments

Comments
 (0)