You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
334 B

<?php
namespace App\Utils;
use Exception;
use Illuminate\Support\Facades\Log;
class CommonUtils {
public static function randomSleep(int $level = 1000) {
try {
usleep(random_int(1000, 10000) * $level);
} catch (Exception $e) {
Log::error("sleep error message: {$e}");
}
}
}