aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/ConsoleBase.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-01-26 21:12:41 +0000
committerJustin Clark-Casey (justincc)2011-01-26 21:12:41 +0000
commita0469daf759d09de040aa8b5287fab9a83555cc1 (patch)
tree59e3f732c1f4930d90c2e32ccaca4397513ce06c /OpenSim/Framework/Console/ConsoleBase.cs
parentRemoved a few more spurious appearance saves. When an avatar (diff)
downloadopensim-SC_OLD-a0469daf759d09de040aa8b5287fab9a83555cc1.zip
opensim-SC_OLD-a0469daf759d09de040aa8b5287fab9a83555cc1.tar.gz
opensim-SC_OLD-a0469daf759d09de040aa8b5287fab9a83555cc1.tar.bz2
opensim-SC_OLD-a0469daf759d09de040aa8b5287fab9a83555cc1.tar.xz
Implement command "land show". This shows all the parcels on the currently selected region/s
This is useful for diagnostics. The command is "land show" rather than "show land" because it's implemented as a module specific subcommand.
Diffstat (limited to 'OpenSim/Framework/Console/ConsoleBase.cs')
-rwxr-xr-xOpenSim/Framework/Console/ConsoleBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/ConsoleBase.cs b/OpenSim/Framework/Console/ConsoleBase.cs
index 3ef76cf..c59fbca 100755
--- a/OpenSim/Framework/Console/ConsoleBase.cs
+++ b/OpenSim/Framework/Console/ConsoleBase.cs
@@ -76,7 +76,7 @@ namespace OpenSim.Framework.Console
76 System.Console.WriteLine(text); 76 System.Console.WriteLine(text);
77 } 77 }
78 78
79 public virtual void OutputFormat(string format, params string[] components) 79 public virtual void OutputFormat(string format, params object[] components)
80 { 80 {
81 Output(string.Format(format, components)); 81 Output(string.Format(format, components));
82 } 82 }