Add timer measurements for autosave

This commit is contained in:
Dylan K. Taylor 2019-03-02 18:20:25 +00:00
parent 382488dd07
commit 2bffd5cc1c
3 changed files with 9 additions and 3 deletions

@ -1 +1 @@
Subproject commit 34386f9e86fef8690f34193412f086e5516f1a22 Subproject commit 73ed1ab3e1f2a1644fe908b439f8cf8ed6c12ab5

View File

@ -26,6 +26,8 @@ namespace pocketmine\command\defaults;
use pocketmine\command\Command; use pocketmine\command\Command;
use pocketmine\command\CommandSender; use pocketmine\command\CommandSender;
use pocketmine\lang\TranslationContainer; use pocketmine\lang\TranslationContainer;
use function microtime;
use function round;
class SaveCommand extends VanillaCommand{ class SaveCommand extends VanillaCommand{
@ -43,7 +45,8 @@ class SaveCommand extends VanillaCommand{
return true; return true;
} }
Command::broadcastCommandMessage($sender, new TranslationContainer("commands.save.start")); Command::broadcastCommandMessage($sender, new TranslationContainer("pocketmine.save.start"));
$start = microtime(true);
foreach($sender->getServer()->getOnlinePlayers() as $player){ foreach($sender->getServer()->getOnlinePlayers() as $player){
$player->save(); $player->save();
@ -53,7 +56,7 @@ class SaveCommand extends VanillaCommand{
$level->save(true); $level->save(true);
} }
Command::broadcastCommandMessage($sender, new TranslationContainer("commands.save.success")); Command::broadcastCommandMessage($sender, new TranslationContainer("pocketmine.save.success", [round(microtime(true) - $start, 3)]));
return true; return true;
} }

View File

@ -398,7 +398,10 @@ class LevelManager{
if($this->autoSave and ++$this->autoSaveTicker >= $this->autoSaveTicks){ if($this->autoSave and ++$this->autoSaveTicker >= $this->autoSaveTicks){
$this->autoSaveTicker = 0; $this->autoSaveTicker = 0;
$this->server->getLogger()->debug("[Auto Save] Saving worlds...");
$start = microtime(true);
$this->doAutoSave(); $this->doAutoSave();
$this->server->getLogger()->debug("[Auto Save] Save completed in " . round(microtime(true) - $start, 3) . "s");
} }
} }