reformatted some very indented code

This commit is contained in:
Dominik Tomičević 2015-10-06 23:44:48 +02:00
parent 5870ea9b0b
commit 61241ba039

View File

@ -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;
}
};