aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/MainLog.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Console/MainLog.cs')
-rw-r--r--OpenSim/Framework/Console/MainLog.cs24
1 files changed, 9 insertions, 15 deletions
diff --git a/OpenSim/Framework/Console/MainLog.cs b/OpenSim/Framework/Console/MainLog.cs
index e6bf9d9..c246b7d 100644
--- a/OpenSim/Framework/Console/MainLog.cs
+++ b/OpenSim/Framework/Console/MainLog.cs
@@ -27,21 +27,15 @@
27*/ 27*/
28namespace OpenSim.Framework.Console 28namespace OpenSim.Framework.Console
29{ 29{
30 public class MainLog { 30 public class MainLog {
31 31
32 private static LogBase instance; 32 private static LogBase instance;
33 33
34 public static LogBase Instance 34 public static LogBase Instance
35 { 35 {
36 get 36 get { return instance; }
37 { 37 set { instance = value; }
38 return instance; 38 }
39 }
40 set
41 {
42 instance = value;
43 }
44 }
45 } 39 }
46 40
47} 41}