| 26 | using namespace arm_compute::logging; |
| 27 | |
| 28 | FilePrinter::FilePrinter(const std::string &filename) : _handler() |
| 29 | { |
| 30 | _handler.open(filename, std::fstream::out | std::fstream::trunc); |
| 31 | } |
| 32 | |
| 33 | void FilePrinter::print_internal(const std::string &msg) |
| 34 | { |