Merge pull request #23698 from seamuslee001/fix_price_set_entity_since
[civicrm-core.git] / CRM / Utils / EchoLogger.php
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 */
17 class 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 */
26 public function log($level, $message, array $context = []): void {
27 echo $message . "\n";
28 }
29
30 }