16 string sLogFile = svFileName;
17 std::ios_base::openmode openingMode = std::ios_base::app;
18 switch (eLogFilePolicy)
20 case log_file_policy::clear_then_uppend:
22 openingMode = std::ios_base::trunc;
26 case log_file_policy::time_name:
40 const std::filesystem::path path(sWideLogFile.
c_str());
41 if (path.has_parent_path() && !std::filesystem::exists(path.parent_path()))
43 if (!std::filesystem::create_directory(path.parent_path()))
45 std::wcerr << L
"Can't create output folder " << sWideLogFile;
50 m_File = std::basic_ofstream<wchar_t>(path, openingMode);
53 std::wcerr << L
"Can't open log file " << sWideLogFile;
57 QX_DISABLE_MSVC_WARNINGS(4996);
58 m_File.imbue(std::locale(std::locale(),
new std::codecvt_utf8<wchar_t>));
59 QX_RESTORE_MSVC_WARNINGS(4996);
62 inline file_logger_stream::~file_logger_stream()
65 m_File << L
"\n\n\n" << std::flush;
70 QX_PERF_SCOPE(CatLogger,
"Flush to the file");
75 string_view svMessage,
77 const std::vector<logger_color_range>& colors,
80 QX_PERF_SCOPE(CatLogger,
"Log to the file");
Base class for logger streams.
static void append_time_string(string &sTime, char_type chDateDelimiter, char_type chTimeDelimiter) noexcept
Format time string to the buffer.
logger_buffer & get_log_buffer() noexcept
Get string buffers.
const_pointer c_str() const noexcept
Get pointer to string zero terminated.
virtual void do_log(string_view svMessage, const log_unit &logUnit, const std::vector< logger_color_range > &colors, verbosity eVerbosity) override
Proceed stream logging.
virtual void flush() override
Flush stream.
file_logger_stream(bool bAlwaysFlush=false, log_file_policy eLogFilePolicy=log_file_policy::append, string_view svFileName=L"application")
file_logger_stream object constructor
wstring to_wstring(cstring_view stringView, const std::locale &locale=std::locale())
convert cstring to wstring