aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-12-17 02:42:43 +0000
committerJustin Clark-Casey (justincc)2011-12-17 02:42:43 +0000
commit4d065f04534e4b5f1be451796386808347d6e72e (patch)
tree528e4c6565dffb8c93e70ec63510b48328021adb /OpenSim
parentFix bug where objects couldn't be set back to the "none" group. (diff)
downloadopensim-SC_OLD-4d065f04534e4b5f1be451796386808347d6e72e.zip
opensim-SC_OLD-4d065f04534e4b5f1be451796386808347d6e72e.tar.gz
opensim-SC_OLD-4d065f04534e4b5f1be451796386808347d6e72e.tar.bz2
opensim-SC_OLD-4d065f04534e4b5f1be451796386808347d6e72e.tar.xz
Provide user feedback on execution of "backup" region console command
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index ea09893..3a1a8c7 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -796,6 +796,7 @@ namespace OpenSim
796 break; 796 break;
797 797
798 case "backup": 798 case "backup":
799 MainConsole.Instance.Output("Triggering save of pending object updates to persistent store");
799 m_sceneManager.BackupCurrentScene(); 800 m_sceneManager.BackupCurrentScene();
800 break; 801 break;
801 802
@@ -806,7 +807,7 @@ namespace OpenSim
806 if (m_sceneManager.TryGetScene(regRemoveName, out removeScene)) 807 if (m_sceneManager.TryGetScene(regRemoveName, out removeScene))
807 RemoveRegion(removeScene, false); 808 RemoveRegion(removeScene, false);
808 else 809 else
809 MainConsole.Instance.Output("no region with that name"); 810 MainConsole.Instance.Output("No region with that name");
810 break; 811 break;
811 812
812 case "delete-region": 813 case "delete-region":