diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Console/MainLog.cs | 24 |
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 | */ |
28 | namespace OpenSim.Framework.Console | 28 | namespace 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 | } |