jilog
v1.0.0
Published
- Know in which order they are rendered. - Know what is in the value when the component is rendered. - Standardize console log customization.
Downloads
2
Readme
Motivation
- Know in which order they are rendered.
- Know what is in the value when the component is rendered.
- Standardize console log customization.
What Is jilog
Using jilog, you can confirm the below.
- what the time spent from log before.
- what the order run the log.
- what the value is in the running.
Usage
const SampleComponent = (props) => {
/**
* [LOG: 0][TIME: XX milliseconds]
* "{example: 'example log'}"
*/
jiLog({example: 'example log'},'SampleComopnent', 'greenyellow')
return (
<div>
<p>SampleComponent</p>
</div>
)
}