diff options
author | Dahlia Trimble | 2009-01-20 10:09:16 +0000 |
---|---|---|
committer | Dahlia Trimble | 2009-01-20 10:09:16 +0000 |
commit | e94d862db231fce91e9b37788426081699461d4e (patch) | |
tree | f23b22e51e5cded92a4d4abf318c34f4238ce06b /OpenSim/Framework/Console/OpenSimAppender.cs | |
parent | * minor: A few comments. A bit of cleanup. (diff) | |
download | opensim-SC_OLD-e94d862db231fce91e9b37788426081699461d4e.zip opensim-SC_OLD-e94d862db231fce91e9b37788426081699461d4e.tar.gz opensim-SC_OLD-e94d862db231fce91e9b37788426081699461d4e.tar.bz2 opensim-SC_OLD-e94d862db231fce91e9b37788426081699461d4e.tar.xz |
Removed some of the darker colors from console messages as they were not visible in some terminal emulators (like putty)
Diffstat (limited to 'OpenSim/Framework/Console/OpenSimAppender.cs')
-rw-r--r-- | OpenSim/Framework/Console/OpenSimAppender.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/OpenSim/Framework/Console/OpenSimAppender.cs b/OpenSim/Framework/Console/OpenSimAppender.cs index 0246b39..b07617f 100644 --- a/OpenSim/Framework/Console/OpenSimAppender.cs +++ b/OpenSim/Framework/Console/OpenSimAppender.cs | |||
@@ -38,13 +38,14 @@ namespace OpenSim.Framework.Console | |||
38 | public class OpenSimAppender : AnsiColorTerminalAppender | 38 | public class OpenSimAppender : AnsiColorTerminalAppender |
39 | { | 39 | { |
40 | private static readonly ConsoleColor[] Colors = { | 40 | private static readonly ConsoleColor[] Colors = { |
41 | ConsoleColor.DarkBlue, | 41 | // the dark colors don't seem to be visible on some black background terminals like putty :( |
42 | ConsoleColor.DarkGreen, | 42 | //ConsoleColor.DarkBlue, |
43 | ConsoleColor.DarkCyan, | 43 | //ConsoleColor.DarkGreen, |
44 | ConsoleColor.DarkMagenta, | 44 | //ConsoleColor.DarkCyan, |
45 | ConsoleColor.DarkYellow, | 45 | //ConsoleColor.DarkMagenta, |
46 | //ConsoleColor.DarkYellow, | ||
46 | ConsoleColor.Gray, | 47 | ConsoleColor.Gray, |
47 | ConsoleColor.DarkGray, | 48 | //ConsoleColor.DarkGray, |
48 | ConsoleColor.Blue, | 49 | ConsoleColor.Blue, |
49 | ConsoleColor.Green, | 50 | ConsoleColor.Green, |
50 | ConsoleColor.Cyan, | 51 | ConsoleColor.Cyan, |