-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathLogger.php
More file actions
55 lines (51 loc) · 1.71 KB
/
Logger.php
File metadata and controls
55 lines (51 loc) · 1.71 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang\System;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang;
/**
* The `Logger` interface was auto generated.
*/
interface Logger
{
/**
* Returns the name of this logger.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getName
* @NotImplemented
*/
// public function getName($a = null)
/**
* Checks if a message of the given level would be logged by this logger.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isLoggable
* @NotImplemented
*/
// public function isLoggable($a = null)
/**
* Logs a message produced from the given object.
* Logs a message.
* Logs a message with an optional list of parameters.
* Logs a message associated with a given throwable.
* Logs a lazily supplied message.
* Logs a lazily supplied message associated with a given throwable.
* Logs a message with resource bundle and an optional list of parameters.
* Logs a localized message associated with a given throwable.
*
* @param mixed $a
* @param mixed $b
* @param mixed $c
* @param mixed $d
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#log
* @NotImplemented
*/
// public function log($a = null, $b = null, $c = null, $d = null)
}