Module: _Logger
- Defined in:
- sig/logger.rbs
Instance Method Summary collapse
- #add ⇒ Object
- #close ⇒ Object
- #debug {|arg0| ... } ⇒ Object
- #debug! ⇒ Object
- #error {|arg0| ... } ⇒ Object
- #error! ⇒ Object
- #fatal {|arg0| ... } ⇒ Object
- #fatal! ⇒ Object
- #info {|arg0| ... } ⇒ Object
- #info! ⇒ Object
- #info? ⇒ Object
- #level ⇒ Object
- #level= ⇒ Object
- #progname ⇒ Object
- #progname= ⇒ Object
- #warn {|arg0| ... } ⇒ Object
- #warn! ⇒ Object
Instance Method Details
#add ⇒ Object
3 |
# File 'sig/logger.rbs', line 3
def add: (untyped severity, ?untyped message, ?untyped progname) -> untyped
|
#close ⇒ Object
5 |
# File 'sig/logger.rbs', line 5
def close: () -> untyped
|
#debug {|arg0| ... } ⇒ Object
7 |
# File 'sig/logger.rbs', line 7
def debug: (?untyped progname) { (*untyped) -> untyped } -> untyped
|
#debug! ⇒ Object
9 |
# File 'sig/logger.rbs', line 9
def debug!: () -> untyped
|
#error {|arg0| ... } ⇒ Object
11 |
# File 'sig/logger.rbs', line 11
def error: (?untyped progname) { (*untyped) -> untyped } -> untyped
|
#error! ⇒ Object
13 |
# File 'sig/logger.rbs', line 13
def error!: () -> untyped
|
#fatal {|arg0| ... } ⇒ Object
15 |
# File 'sig/logger.rbs', line 15
def fatal: (?untyped progname) { (*untyped) -> untyped } -> untyped
|
#fatal! ⇒ Object
17 |
# File 'sig/logger.rbs', line 17
def fatal!: () -> untyped
|
#info {|arg0| ... } ⇒ Object
19 |
# File 'sig/logger.rbs', line 19
def info: (?untyped progname) { (*untyped) -> untyped } -> untyped
|
#info! ⇒ Object
21 |
# File 'sig/logger.rbs', line 21
def info!: () -> untyped
|
#info? ⇒ Object
23 |
# File 'sig/logger.rbs', line 23
def info?: () -> untyped
|
#level ⇒ Object
25 |
# File 'sig/logger.rbs', line 25
def level: () -> untyped
|
#level= ⇒ Object
27 |
# File 'sig/logger.rbs', line 27
def level=: (untyped severity) -> untyped
|
#progname ⇒ Object
29 |
# File 'sig/logger.rbs', line 29
def progname: () -> untyped
|
#progname= ⇒ Object
31 |
# File 'sig/logger.rbs', line 31
def progname=: (untyped) -> untyped
|
#warn {|arg0| ... } ⇒ Object
33 |
# File 'sig/logger.rbs', line 33
def warn: (?untyped progname) { (*untyped) -> untyped } -> untyped
|
#warn! ⇒ Object
35 |
# File 'sig/logger.rbs', line 35
def warn!: () -> untyped
|