APIv4 - Add Address::getCoordinates action
[civicrm-core.git] / CRM / Utils / EchoLogger.php
CommitLineData
12b478ef
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12/**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17class CRM_Utils_EchoLogger extends Psr\Log\AbstractLogger implements \Psr\Log\LoggerInterface {
18
19 /**
20 * Logs with an arbitrary level.
21 *
22 * @param mixed $level
23 * @param string $message
24 * @param array $context
25 */
ada741b8 26 public function log($level, $message, array $context = []): void {
12b478ef
TO
27 echo $message . "\n";
28 }
29
30}