mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 19:35:41 +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>.*)";
|
||||
|
||||
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