19 #ifndef ATOM_TOOLS_OUTPUTLOGGER
20 #define ATOM_TOOLS_OUTPUTLOGGER
48 static bool get_log_to_file() {
return log_to_file_; }
49 static std::string get_output_file_address() {
return output_file_address_; }
51 static void set_log_to_file(
bool log_to_file) { log_to_file_ = log_to_file; }
52 static void set_output_file_address(
bool output_file_address) { output_file_address_ = output_file_address; }
54 static void Log_(
const std::string& message);
55 static std::string CurrentDateTime_();
58 static std::mutex mutex_;
59 static bool log_to_file_;
60 static std::string output_file_address_;