------------------------------------------------------------------------- TextLogObject::va_write This routine will take a format string and va_list and write it as a single entry (line) in the text file. If timestamps are on, then the entry will be preceeded by a timestamp. Returns ReturnCodeFlags. -------------------------------------------------------------------------*/
| 898 | Returns ReturnCodeFlags. |
| 899 | -------------------------------------------------------------------------*/ |
| 900 | int |
| 901 | TextLogObject::va_write(const char *format, va_list ap) |
| 902 | { |
| 903 | return this->va_log(nullptr, format, ap); |
| 904 | } |
| 905 | |
| 906 | /*------------------------------------------------------------------------- |
| 907 | LogObjectManager |
no test coverage detected