In-VR console logs for A-Frame.
npm install aframe-log-component

In-VR console logs for A-Frame.
#### AFRAME.log (message, channel)
Provided global function to console.log a message into VR.
``html`
`js`
AFRAME.log('hello to all log entities');
AFRAME.log('hello to foo', 'foo');
#### Properties
| Property | Description | Default Value |
| -------- | ----------- | ------------- |
| channel | String to specify to only render logs that are sent with a specific channel. | '' |
| filter | Plain-text string filter. (e.g., filter: bar would match log messages with bar in them. | '' |
####
Primitive with a default plane geometry, black material, and light green text.
`html
`
#### Logging Via Events
`js`
document.querySelector('a-scene').emit('log', {message: 'hello', channel: 'bar'});
#### Browser
Install and use by directly including the browser files:
`html
#### npm
Install via npm:
`bash
npm install aframe-log-component
`Then require and use.
`js
require('aframe');
require('aframe-log-component');
`$3
- Allow listening and outputting from vanilla
console.log`s.