aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-16 18:19:02 +0000
committerJustin Clarke Casey2008-05-16 18:19:02 +0000
commit6812de9af2a2c7835234cac5a6fd779091e73e13 (patch)
treece9ec21e8e61663315e9764eb9699e2fd68bde06
parent* Eliminate occurences of "Got a texture uuid ... with no sender object to ha... (diff)
downloadopensim-SC_OLD-6812de9af2a2c7835234cac5a6fd779091e73e13.zip
opensim-SC_OLD-6812de9af2a2c7835234cac5a6fd779091e73e13.tar.gz
opensim-SC_OLD-6812de9af2a2c7835234cac5a6fd779091e73e13.tar.bz2
opensim-SC_OLD-6812de9af2a2c7835234cac5a6fd779091e73e13.tar.xz
* Minor: For no particularly good reason, make all console prompts conform to the same prompt scheme
-rw-r--r--OpenSim/Grid/AssetServer/Main.cs2
-rw-r--r--OpenSim/Grid/GridServer/GridServerBase.cs2
-rw-r--r--OpenSim/Grid/InventoryServer/Main.cs2
-rw-r--r--OpenSim/Grid/MessagingServer/Main.cs2
-rw-r--r--OpenSim/Grid/ScriptServer/ScriptServerMain.cs2
-rw-r--r--OpenSim/Grid/UserServer/Main.cs2
6 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Grid/AssetServer/Main.cs b/OpenSim/Grid/AssetServer/Main.cs
index 2aca8ff..83a6c89 100644
--- a/OpenSim/Grid/AssetServer/Main.cs
+++ b/OpenSim/Grid/AssetServer/Main.cs
@@ -80,7 +80,7 @@ namespace OpenSim.Grid.AssetServer
80 80
81 public OpenAsset_Main() 81 public OpenAsset_Main()
82 { 82 {
83 m_console = new ConsoleBase("OpenAsset", this); 83 m_console = new ConsoleBase("Asset", this);
84 84
85 MainConsole.Instance = m_console; 85 MainConsole.Instance = m_console;
86 } 86 }
diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs
index 88a9561..4e29cbf 100644
--- a/OpenSim/Grid/GridServer/GridServerBase.cs
+++ b/OpenSim/Grid/GridServer/GridServerBase.cs
@@ -60,7 +60,7 @@ namespace OpenSim.Grid.GridServer
60 60
61 public GridServerBase() 61 public GridServerBase()
62 { 62 {
63 m_console = new ConsoleBase("GRID", this); 63 m_console = new ConsoleBase("Grid", this);
64 MainConsole.Instance = m_console; 64 MainConsole.Instance = m_console;
65 } 65 }
66 66
diff --git a/OpenSim/Grid/InventoryServer/Main.cs b/OpenSim/Grid/InventoryServer/Main.cs
index b7c46c2..ae76cd4 100644
--- a/OpenSim/Grid/InventoryServer/Main.cs
+++ b/OpenSim/Grid/InventoryServer/Main.cs
@@ -60,7 +60,7 @@ namespace OpenSim.Grid.InventoryServer
60 60
61 public OpenInventory_Main() 61 public OpenInventory_Main()
62 { 62 {
63 m_console = new ConsoleBase(LogName, this); 63 m_console = new ConsoleBase("Inventory", this);
64 MainConsole.Instance = m_console; 64 MainConsole.Instance = m_console;
65 } 65 }
66 66
diff --git a/OpenSim/Grid/MessagingServer/Main.cs b/OpenSim/Grid/MessagingServer/Main.cs
index 7e9456d..5c1fb19 100644
--- a/OpenSim/Grid/MessagingServer/Main.cs
+++ b/OpenSim/Grid/MessagingServer/Main.cs
@@ -65,7 +65,7 @@ namespace OpenSim.Grid.MessagingServer
65 65
66 private OpenMessage_Main() 66 private OpenMessage_Main()
67 { 67 {
68 m_console = new ConsoleBase("OpenMessage", this); 68 m_console = new ConsoleBase("Messaging", this);
69 MainConsole.Instance = m_console; 69 MainConsole.Instance = m_console;
70 } 70 }
71 71
diff --git a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs
index e487c02..9de250b 100644
--- a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs
+++ b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs
@@ -99,7 +99,7 @@ namespace OpenSim.Grid.ScriptServer
99 99
100 protected ConsoleBase CreateConsole() 100 protected ConsoleBase CreateConsole()
101 { 101 {
102 return new ConsoleBase("ScriptServer", this); 102 return new ConsoleBase("Script", this);
103 } 103 }
104 } 104 }
105} 105}
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs
index 79524b4..f8aa0f1 100644
--- a/OpenSim/Grid/UserServer/Main.cs
+++ b/OpenSim/Grid/UserServer/Main.cs
@@ -70,7 +70,7 @@ namespace OpenSim.Grid.UserServer
70 70
71 private OpenUser_Main() 71 private OpenUser_Main()
72 { 72 {
73 m_console = new ConsoleBase("OpenUser", this); 73 m_console = new ConsoleBase("User", this);
74 MainConsole.Instance = m_console; 74 MainConsole.Instance = m_console;
75 } 75 }
76 76