1 | <?php namespace DiegoCaprioli\Larachimp\Traits; |
||
9 | trait BasicLogging { |
||
10 | |||
11 | /** |
||
12 | * The logger to user |
||
13 | * @var \Illuminate\Contracts\Logging\Log |
||
14 | */ |
||
15 | protected $log; |
||
16 | |||
17 | |||
18 | /** |
||
19 | * Sets the log attribute |
||
20 | * |
||
21 | * @param Log $log |
||
22 | */ |
||
23 | 5 | public function setLog(Log $log = null) |
|
27 | |||
28 | /** |
||
29 | * If there's a logger defined, it logs the string |
||
30 | * |
||
31 | * @param string $string The string to log |
||
32 | */ |
||
33 | 6 | protected function logInfo($string) |
|
42 | |||
43 | /** |
||
44 | * If there's a logger defined, it logs the string |
||
45 | * |
||
46 | * @param string $string The string to log |
||
47 | */ |
||
48 | protected function logError($string) |
||
54 | |||
55 | } |