Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public function useDailyFiles($path, $days = 0, $level = 'debug')
  2. {
  3. $this->monolog->pushHandler(
  4. $handler = new RotatingFileHandler($path, $days, $this->parseLevel($level))
  5. );
  6.  
  7. $handler->setFormatter($this->getDefaultFormatter());
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement