* hb_log ********************************************************************** * If verbose mode is one, print message with timestamp. Messages * longer than 180 characters are stripped ;p *********************************************************************/
| 4518 | * longer than 180 characters are stripped ;p |
| 4519 | *********************************************************************/ |
| 4520 | void hb_log( char * log, ... ) |
| 4521 | { |
| 4522 | va_list args; |
| 4523 | |
| 4524 | va_start( args, log ); |
| 4525 | hb_valog( 0, NULL, log, args ); |
| 4526 | va_end( args ); |
| 4527 | } |
| 4528 | |
| 4529 | /********************************************************************** |
| 4530 | * hb_deep_log |
no test coverage detected