nthallen / monarch

Monarch Data Acquisition System
0 stars 1 forks source link

Debug output before memo is configured #81

Closed nthallen closed 4 years ago

nthallen commented 4 years ago

Several of the Bootstrap programs are apparently writing out the message:

Debug: memo: Connected

to the console. I think this is the result of a msg(-2) call occuring before the msg system is properly configured, specifically associated with the DAS_IO::Client::connected() function or something like that. Perhaps specifically in the override functions within the msg class.

nthallen commented 4 years ago

I think the solution is to find the "Connected" debug message and make it:

msg(MSG_DBG(1), ...);

instead of MSG_DEBUG or MSG_DBG(0).