output to stdout or equivalent
| 541 | |
| 542 | virtual void to_out ( const LineInfo * at, int level, const char * message ); // output to stdout or equivalent |
| 543 | void to_out ( const LineInfo * at, const char * message ) { |
| 544 | to_out(at, LogLevel::defaultPrint, message); |
| 545 | } |
| 546 | virtual void to_err ( const LineInfo * at, const char * message ) { |
| 547 | // output to stderr or equivalent |
| 548 | to_out(at, LogLevel::error, message); |