log.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. // -----------------------------------------------------
  43. // Determine the yearly directory.
  44. // -----------------------------------------------------
  45. $directory = APP_PATH.'logs/'.date('Y');
  46. if ( ! is_dir($directory))
  47. {
  48. static::make_directory($directory);
  49. }
  50. // -----------------------------------------------------
  51. // Determine the monthly directory.
  52. // -----------------------------------------------------
  53. $directory .= '/'.date('m');
  54. if ( ! is_dir($directory))
  55. {
  56. static::make_directory($directory);
  57. }
  58. // -----------------------------------------------------
  59. // Determine the daily file.
  60. // -----------------------------------------------------
  61. $file = $directory.'/'.date('d').EXT;
  62. file_put_contents($file, date('Y-m-d H:i:s').' '.$type.' - '.$message.PHP_EOL, LOCK_EX | FILE_APPEND);
  63. chmod($file, 0666);
  64. }
  65. /**
  66. * Create a log directory.
  67. *
  68. * @param string $directory
  69. * @return void
  70. */
  71. private static function make_directory($directory)
  72. {
  73. mkdir($directory, 02777);
  74. chmod($directory, 02777);
  75. }
  76. }