diff options
| author | Rye <rye@alchemyviewer.org> | 2025-10-29 08:26:10 -0400 |
|---|---|---|
| committer | Rye <rye@alchemyviewer.org> | 2025-11-02 21:40:05 -0500 |
| commit | eaafd499ca026157570e9cbd83ef4bb44dd4593b (patch) | |
| tree | 6c01885a13971fab018d4e50424136814637924a | |
| parent | 0b3c2f6770db3b019be95802a6168e02aca7bfb5 (diff) | |
Fix log to file not supporting multiline output
Signed-off-by: Rye <rye@alchemyviewer.org>
| -rw-r--r-- | indra/llcommon/llerror.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 3411e9c6bb..2507bddad6 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -133,6 +133,7 @@ namespace { RecordToFile(const std::string& filename): mName(filename) { + showMultiline(true); mFile.open(filename.c_str(), std::ios_base::out | std::ios_base::app); if (!mFile) { |
