Allow console output to be multiline by making colourization regex RegexOptions.SingleLine
This commit is contained in:
@@ -283,7 +283,7 @@ namespace OpenSim.Framework.Console
|
||||
{
|
||||
string regex = @"^(?<Front>.*?)\[(?<Category>[^\]]+)\]:?(?<End>.*)";
|
||||
|
||||
Regex RE = new Regex(regex, RegexOptions.Multiline);
|
||||
Regex RE = new Regex(regex, RegexOptions.Singleline);
|
||||
MatchCollection matches = RE.Matches(text);
|
||||
|
||||
if (matches.Count == 1)
|
||||
|
||||
Reference in New Issue
Block a user