| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public static function handle(Event $event) |
||
| 36 | { |
||
| 37 | /** @var Response $response */ |
||
| 38 | $response = $event->sender; |
||
| 39 | |||
| 40 | Craft::getLogger()->log( |
||
| 41 | sprintf( |
||
| 42 | "Status Code = %s \n\n" . |
||
| 43 | "Body = %s", |
||
| 44 | $response->getStatusCode(), |
||
| 45 | $response->content |
||
| 46 | ), |
||
| 47 | $event->data['level'] ?? static::$level, |
||
| 48 | $event->data['category'] ?? static::$category |
||
| 49 | ); |
||
| 50 | } |
||
| 51 | } |
||
| 52 |