| @@ 36-44 (lines=9) @@ | ||
| 33 | /** |
|
| 34 | * @param GetResponseEvent $event |
|
| 35 | */ |
|
| 36 | public function onKernelRequest(GetResponseEvent $event) |
|
| 37 | { |
|
| 38 | if (!$event->isMasterRequest()) { |
|
| 39 | return; |
|
| 40 | } |
|
| 41 | ||
| 42 | $route = $this->getRoute($event->getRequest()); |
|
| 43 | \EccubeLog::info('PROCESS START', array($route)); |
|
| 44 | } |
|
| 45 | ||
| 46 | /** |
|
| 47 | * @param FilterControllerEvent $event |
|
| @@ 49-57 (lines=9) @@ | ||
| 46 | /** |
|
| 47 | * @param FilterControllerEvent $event |
|
| 48 | */ |
|
| 49 | public function onKernelController(FilterControllerEvent $event) |
|
| 50 | { |
|
| 51 | if (!$event->isMasterRequest()) { |
|
| 52 | return; |
|
| 53 | } |
|
| 54 | ||
| 55 | $route = $this->getRoute($event->getRequest()); |
|
| 56 | \EccubeLog::info('LOGIC START', array($route)); |
|
| 57 | } |
|
| 58 | ||
| 59 | /** |
|
| 60 | * @param FilterResponseEvent $event |
|
| @@ 62-70 (lines=9) @@ | ||
| 59 | /** |
|
| 60 | * @param FilterResponseEvent $event |
|
| 61 | */ |
|
| 62 | public function onKernelResponse(FilterResponseEvent $event) |
|
| 63 | { |
|
| 64 | if (!$event->isMasterRequest()) { |
|
| 65 | return; |
|
| 66 | } |
|
| 67 | ||
| 68 | $route = $this->getRoute($event->getRequest()); |
|
| 69 | \EccubeLog::info('LOGIC END', array($route)); |
|
| 70 | } |
|
| 71 | ||
| 72 | /** |
|
| 73 | * @param PostResponseEvent $event |
|