Skip to content
Snippets Groups Projects
Commit 299a3bf8 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Enable multiline log output to file

parent 205eb79d
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,8 @@ namespace {
RecordToFile(const std::string& filename):
mName(filename)
{
showMultiline(true);
mFile.open(filename, std::ios_base::out | std::ios_base::app);
if (!mFile)
{
......@@ -1197,7 +1199,7 @@ namespace
if (r->wantsTags())
{
message_stream << site.mTagString;
message_stream << site.mTagString << " ";
}
message_stream << " ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment