From d7f21964b5f454d4071331de365ecdaa50fc3aef Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 24 Feb 2020 14:50:29 +0900 Subject: [PATCH] Update perftool.php --- helper/perftool.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helper/perftool.php b/helper/perftool.php index 22735e1..0d7eae4 100644 --- a/helper/perftool.php +++ b/helper/perftool.php @@ -20,7 +20,7 @@ if(!is_fn("get_cpu_idle")) { } if(!is_fn("set_min_cpu_idle")) { - function set_min_cpu_idle($min_cpu_idle=0.05) { + function set_min_cpu_idle($min_cpu_idle=0.01) { $wait = 0; // default (cpu_sleep_time): 3 seconds @@ -28,7 +28,7 @@ if(!is_fn("set_min_cpu_idle")) { if($min_cpu_idle > 0 && $min_cpu_idle < 1) { while(get_cpu_idle() < $min_cpu_idle) { if($wait == 0) { - write_common_log("CPU usage exceeded, wait a few seconds...", "helper/preftool"); + write_common_log("CPU usage exceeded. wait a few seconds...", "helper/preftool"); } sleep($cpu_sleep_time); @@ -37,7 +37,7 @@ if(!is_fn("set_min_cpu_idle")) { } if($wait > 0) { - write_common_log(sprintf("CPU usage recovered, waited %s seconds ago", ($wait * $cpu_sleep_time)), "helper/preftool"); + write_common_log(sprintf("CPU usage recovered. waited %s seconds ago", ($wait * $cpu_sleep_time)), "helper/preftool"); } } }