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:160
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:170
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:167
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:166
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:169
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:171
warn
▸ warn(obj
, msg?
): void
Parameters
Name | Type |
---|---|
obj | string | object |
msg? | string |
Returns
void
Implementation of
Logger.warn