log.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. // Create the yearly and monthly directories if needed.
  44. // -----------------------------------------------------
  45. static::make_directory($directory = APP_PATH.'storage/logs/'.date('Y'));
  46. static::make_directory($directory .= '/'.date('m'));
  47. // -----------------------------------------------------
  48. // Each day has its own log file.
  49. // -----------------------------------------------------
  50. $file = $directory.'/'.date('d').EXT;
  51. // -----------------------------------------------------
  52. // Append to the log file and set the permissions.
  53. // -----------------------------------------------------
  54. file_put_contents($file, date('Y-m-d H:i:s').' '.$type.' - '.$message.PHP_EOL, LOCK_EX | FILE_APPEND);
  55. chmod($file, 0666);
  56. }
  57. /**
  58. * Create a log directory.
  59. *
  60. * If the directory already exists, no action will be taken.
  61. *
  62. * @param string $directory
  63. * @return void
  64. */
  65. private static function make_directory($directory)
  66. {
  67. if ( ! is_dir($directory))
  68. {
  69. mkdir($directory, 02777);
  70. chmod($directory, 02777);
  71. }
  72. }
  73. }