diff options
Diffstat (limited to 'OpenSim/Grid/ScriptServer')
-rw-r--r-- | OpenSim/Grid/ScriptServer/ScriptServerMain.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs index 729d262..528b51c 100644 --- a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs +++ b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs | |||
@@ -80,14 +80,14 @@ namespace OpenSim.Grid.ScriptServer | |||
80 | Console.ReadLine(); | 80 | Console.ReadLine(); |
81 | } | 81 | } |
82 | 82 | ||
83 | private void RPC_ReceiveCommand(int ID, string Command, object[] p) | 83 | private static void RPC_ReceiveCommand(int ID, string Command, object[] p) |
84 | { | 84 | { |
85 | m_log.Info("[SERVER]: Received command: '" + Command + "'"); | 85 | m_log.Info("[SERVER]: Received command: '" + Command + "'"); |
86 | if (p != null) | 86 | if (p != null) |
87 | { | 87 | { |
88 | for (int i = 0; i < p.Length; i++) | 88 | for (int i = 0; i < p.Length; i++) |
89 | { | 89 | { |
90 | m_log.Info("[SERVER]: Param " + i + ": " + p[i].ToString()); | 90 | m_log.Info("[SERVER]: Param " + i + ": " + p[i]); |
91 | } | 91 | } |
92 | } | 92 | } |
93 | 93 | ||