log.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php namespace System;
  2. class Log {
  3. /**
  4. * Write an info message to the log.
  5. *
  6. * @param string $message
  7. * @return void
  8. */
  9. public static function info($message)
  10. {
  11. static::write('Info', $message);
  12. }
  13. /**
  14. * Write a debug message to the log.
  15. *
  16. * @param string $message
  17. * @return void
  18. */
  19. public static function debug($message)
  20. {
  21. static::write('Debug', $message);
  22. }
  23. /**
  24. * Write an error message to the logs.
  25. *
  26. * @param string $message
  27. * @return void
  28. */
  29. public static function error($message)
  30. {
  31. static::write('Error', $message);
  32. }
  33. /**
  34. * Write a message to the logs.
  35. *
  36. * @param string $type
  37. * @param string $message
  38. * @return void
  39. */
  40. public static function write($type, $message)
  41. {
  42. // Create the yearly and monthly directories if needed.
  43. static::make_directory($directory = APP_PATH.'storage/logs/'.date('Y'));
  44. static::make_directory($directory .= '/'.date('m'));
  45. // Get the daily log file filename.
  46. $file = $directory.'/'.date('d').EXT;
  47. file_put_contents($file, date('Y-m-d H:i:s').' '.$type.' - '.$message.PHP_EOL, LOCK_EX | FILE_APPEND);
  48. chmod($file, 0666);
  49. }
  50. /**
  51. * Create a log directory.
  52. *
  53. * If the directory already exists, no action will be taken.
  54. *
  55. * @param string $directory
  56. * @return void
  57. */
  58. private static function make_directory($directory)
  59. {
  60. if ( ! is_dir($directory))
  61. {
  62. mkdir($directory, 02777);
  63. chmod($directory, 02777);
  64. }
  65. }
  66. }