aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-08-07 15:12:33 +0000
committerCharles Krinke2008-08-07 15:12:33 +0000
commit9a8569160f5ca390f25127a73589ac420432a7db (patch)
tree1a1d165c5fa7a67121c52060a0bc126f283fcb3d /OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
parentMantis#1888. Thank you kindly, Tyre for a patch that: (diff)
downloadopensim-SC_OLD-9a8569160f5ca390f25127a73589ac420432a7db.zip
opensim-SC_OLD-9a8569160f5ca390f25127a73589ac420432a7db.tar.gz
opensim-SC_OLD-9a8569160f5ca390f25127a73589ac420432a7db.tar.bz2
opensim-SC_OLD-9a8569160f5ca390f25127a73589ac420432a7db.tar.xz
Mantis#1899. Thank you kindly, Cmickeyb for a patch that:
attached are some patches to either comment out direct console writes or to convert them to log writes
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
index 0a2ce15..aacbd55 100644
--- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
+++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs
@@ -125,19 +125,19 @@ namespace OpenSim.Region.ScriptEngine.Common
125 125
126 // Get this AppDomain's settings and display some of them. 126 // Get this AppDomain's settings and display some of them.
127 AppDomainSetup ads = AppDomain.CurrentDomain.SetupInformation; 127 AppDomainSetup ads = AppDomain.CurrentDomain.SetupInformation;
128 Console.WriteLine("AppName={0}, AppBase={1}, ConfigFile={2}", 128 // Console.WriteLine("AppName={0}, AppBase={1}, ConfigFile={2}",
129 ads.ApplicationName, 129 // ads.ApplicationName,
130 ads.ApplicationBase, 130 // ads.ApplicationBase,
131 ads.ConfigurationFile 131 // ads.ConfigurationFile
132 ); 132 // );
133 133
134 // Display the name of the calling AppDomain and the name 134 // Display the name of the calling AppDomain and the name
135 // of the second domain. 135 // of the second domain.
136 // NOTE: The application's thread has transitioned between 136 // NOTE: The application's thread has transitioned between
137 // AppDomains. 137 // AppDomains.
138 Console.WriteLine("Calling to '{0}'.", 138 // Console.WriteLine("Calling to '{0}'.",
139 Thread.GetDomain().FriendlyName 139 // Thread.GetDomain().FriendlyName
140 ); 140 // );
141 141
142 return; 142 return;
143 } 143 }