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