ifPrint function
Implementation
void ifPrint(Object obj, bool _b) {
/* Flags in glb.st Map, that control printing of different things.
'flow' : false, // false prevents all "flow" printing via flowServe();
// Shorten output 2 screens.
'buf' : false, // TODO controls bufPrint
'info' : false,
'help' : false,
'bug' : false,
'test' : false,
'msg' : false,
'dev' : false,
'header' : false,
'footer' : false,
'state' : false, // state
*/
/// TODO Can this print buf, map, list, String?
if (_b) print(obj);
}