diff options
author | Jeff Ames | 2008-02-06 03:52:36 +0000 |
---|---|---|
committer | Jeff Ames | 2008-02-06 03:52:36 +0000 |
commit | d76d604ce9f749943a6dc6c2260b1375b4ee77b4 (patch) | |
tree | 0f5bb1f7a3fe3f3e1de9418832ac5b71901d458a /bin/OpenSimExport.exe.config | |
parent | Fixed regex in LSL2CSConverter so it will properly handle casting to (string)... (diff) | |
download | opensim-SC_OLD-d76d604ce9f749943a6dc6c2260b1375b4ee77b4.zip opensim-SC_OLD-d76d604ce9f749943a6dc6c2260b1375b4ee77b4.tar.gz opensim-SC_OLD-d76d604ce9f749943a6dc6c2260b1375b4ee77b4.tar.bz2 opensim-SC_OLD-d76d604ce9f749943a6dc6c2260b1375b4ee77b4.tar.xz |
Added colors back to console output.
Fixed line duplication in console output.
Diffstat (limited to 'bin/OpenSimExport.exe.config')
-rw-r--r-- | bin/OpenSimExport.exe.config | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/bin/OpenSimExport.exe.config b/bin/OpenSimExport.exe.config index fce85b2..5cf4b9f 100644 --- a/bin/OpenSimExport.exe.config +++ b/bin/OpenSimExport.exe.config | |||
@@ -6,7 +6,25 @@ | |||
6 | <appSettings> | 6 | <appSettings> |
7 | </appSettings> | 7 | </appSettings> |
8 | <log4net> | 8 | <log4net> |
9 | <appender name="Console" type="log4net.Appender.ConsoleAppender"> | 9 | <appender name="Console" type="log4net.Appender.AnsiColorTerminalAppender"> |
10 | <mapping> | ||
11 | <level value="ERROR" /> | ||
12 | <foreColor value="Red" /> | ||
13 | <attributes value="Bright"/> | ||
14 | </mapping> | ||
15 | <mapping> | ||
16 | <level value="DEBUG"/> | ||
17 | <foreColor value="Green"/> | ||
18 | </mapping> | ||
19 | <mapping> | ||
20 | <level value="INFO"/> | ||
21 | <foreColor value="Blue"/> | ||
22 | </mapping> | ||
23 | <mapping> | ||
24 | <level value="Warn"/> | ||
25 | <foreColor value="Yellow"/> | ||
26 | <attributes value="Bright"/> | ||
27 | </mapping> | ||
10 | <layout type="log4net.Layout.PatternLayout"> | 28 | <layout type="log4net.Layout.PatternLayout"> |
11 | <conversionPattern value="%date %-5level %logger - %message%newline" /> | 29 | <conversionPattern value="%date %-5level %logger - %message%newline" /> |
12 | </layout> | 30 | </layout> |