-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathLogTrait.php
39 lines (36 loc) · 1.16 KB
/
LogTrait.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Log;
use Psr\Log\LogLevel;
/**
* A trait providing an object short-cut method
* to logging.
*/
trait LogTrait
{
/**
* Convenience method to write a message to Log. See Log::write()
* for more information on writing to logs.
*
* @param string $message Log message.
* @param int|string $level Error level.
* @param string|array $context Additional log data relevant to this message.
* @return bool Success of log write.
*/
public function log(string $message, $level = LogLevel::ERROR, $context = []): bool
{
return Log::write($level, $message, $context);
}
}