mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
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>.*)";
|
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)
|
||||||
|
|||||||
Reference in New Issue
Block a user