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.

LuLog.php 135B

123456789101112
  1. <?php
  2. namespace Luticate\Utils;
  3. use Log;
  4. class LuLog {
  5. public static function log($data)
  6. {
  7. Log::info($data);
  8. }
  9. }