mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
Change appender to deal with line feeds more intelligently.
Change migration error reporting to not truncate the statement when reporting. It's a bit messier than the old error reporting, but at least one gets an idea of what could be wrong again. And things look a lot neater now.
This commit is contained in:
@@ -66,7 +66,10 @@ namespace OpenSim.Framework.Console
|
||||
}
|
||||
else
|
||||
{
|
||||
System.Console.WriteLine(loggingMessage);
|
||||
if (!loggingMessage.EndsWith("\n"))
|
||||
System.Console.WriteLine(loggingMessage);
|
||||
else
|
||||
System.Console.Write(loggingMessage);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
|
||||
Reference in New Issue
Block a user