reformatted some very indented code
This commit is contained in:
parent
5870ea9b0b
commit
61241ba039
@ -34,17 +34,16 @@ private:
|
||||
auto time_string = std::string(std::ctime(&t));
|
||||
|
||||
return stream << bash_color::green
|
||||
<< "[" << to_string(message.level) << "] "
|
||||
<< bash_color::end
|
||||
<< message.text << std::endl
|
||||
<< bash_color::yellow << " on " << bash_color::end
|
||||
<< time_string.substr(0, time_string.size() - 1)
|
||||
<< bash_color::yellow << " in file "
|
||||
<< bash_color::end << message.file
|
||||
<< bash_color::yellow << " in function "
|
||||
<< bash_color::end << message.function
|
||||
<< bash_color::yellow << " at line "
|
||||
<< bash_color::end << message.line;
|
||||
<< "[" << to_string(message.level) << "] " << bash_color::end
|
||||
<< message.text << std::endl
|
||||
<< bash_color::yellow << " on " << bash_color::end
|
||||
<< time_string.substr(0, time_string.size() - 1)
|
||||
<< bash_color::yellow << " in file " << bash_color::end
|
||||
<< message.file
|
||||
<< bash_color::yellow << " in function " << bash_color::end
|
||||
<< message.function
|
||||
<< bash_color::yellow << " at line " << bash_color::end
|
||||
<< message.line;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user