Class: BoundLogger
core/log.BoundLogger
A BoundLogger binds a LogImplementation to a specific render of an Element.
Implements
Constructors
constructor
• new BoundLogger(impl
, renderId
, element
)
Parameters
Name | Type |
---|---|
impl | LogImplementation |
renderId | string |
element | Element <any > |
Defined in
packages/ai-jsx/src/core/log.ts:104
Methods
debug
▸ debug(obj
, msg?
): void
Parameters
Name | Type |
---|---|
obj | string | object |
msg? | string |
Returns
void
Implementation of
Logger.debug
Defined in
packages/ai-jsx/src/core/log.ts:114
error
▸ error(obj
, msg?
): void
Parameters
Name | Type |
---|---|
obj | string | object |
msg? | string |
Returns
void
Implementation of
Logger.error
Defined in
packages/ai-jsx/src/core/log.ts:111
fatal
▸ fatal(obj
, msg?
): void
Parameters
Name | Type |
---|---|
obj | string | object |
msg? | string |
Returns
void
Implementation of
Logger.fatal
Defined in
packages/ai-jsx/src/core/log.ts:110
info
▸ info(obj
, msg?
): void
Parameters
Name | Type |
---|---|
obj | string | object |
msg? | string |
Returns
void
Implementation of
Logger.info
Defined in
packages/ai-jsx/src/core/log.ts:113
trace
▸ trace(obj
, msg?
): void
Parameters
Name | Type |
---|---|
obj | string | object |
msg? | string |
Returns
void
Implementation of
Logger.trace
Defined in
packages/ai-jsx/src/core/log.ts:115
warn
▸ warn(obj
, msg?
): void
Parameters
Name | Type |
---|---|
obj | string | object |
msg? | string |
Returns
void
Implementation of
Logger.warn