| 608 | class FileWriter { |
| 609 | public: |
| 610 | FileWriter(std::string const& log_directory, |
| 611 | std::string const& log_file_name, uint32_t log_file_roll_size_mb) |
| 612 | : m_log_file_roll_size_bytes(log_file_roll_size_mb * 1024 * 1024), |
| 613 | m_name(log_directory + log_file_name) |
| 614 | { |
| 615 | roll_file(); |
| 616 | } |
| 617 | |
| 618 | void write(VDebug& logline) |
| 619 | { |
nothing calls this directly
no outgoing calls
no test coverage detected