Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres G. Aragoneses <knocte@gmail.com>2013-04-26 20:03:54 +0400
committerAndres G. Aragoneses <knocte@gmail.com>2013-04-26 20:03:54 +0400
commit126d079b84750401ca70b30767710f0ead891e81 (patch)
tree9c45309ee70f177c5da7c7d4994154ab94a3b647
parente072c0ec34bd2d668ac7135ef2efec5be51ccd6b (diff)
[System.Web] Use STDERR instead of STDOUT in LRUcache
As suggested by Marek Habersack
-rw-r--r--mcs/class/System.Web/System.Web.Configuration_2.0/LruCache.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.Configuration_2.0/LruCache.cs b/mcs/class/System.Web/System.Web.Configuration_2.0/LruCache.cs
index 37a8d37ce8b..3bd959938dc 100644
--- a/mcs/class/System.Web/System.Web.Configuration_2.0/LruCache.cs
+++ b/mcs/class/System.Web/System.Web.Configuration_2.0/LruCache.cs
@@ -69,7 +69,7 @@ namespace System.Web.Configuration {
evictions++;
if (!String.IsNullOrEmpty (EvictionWarning) && !eviction_warning_shown && (evictions >= entry_limit)) {
- Console.WriteLine ("WARNING: " + EvictionWarning);
+ Console.Error.WriteLine ("WARNING: " + EvictionWarning);
eviction_warning_shown = true;
}
}