Starting from v1.0.0, we add the plugin to record and play back console output. This feature aims to provide developers with more information about the bug scene. There are some options for recording and replaying console output.
You can enable the logger using default option like this:
import rrweb from 'rrweb';
import { getRecordConsolePlugin } from '@rrweb/rrweb-plugin-console-record';
rrweb.record({
emit: function emit(event) {
// you should use console.log in this way to avoid errors.
const defaultLog = console.log['__rrweb_original__']
? console.log['__rrweb_original__']
: console.log;
defaultLog(event);
},
// to use default record option
plugins: [getRecordConsolePlugin()],
});
alert: You shouldn't call console.log(warn, error .etc) in the emit function or you would get the error: Uncaught RangeError: Maximum call stack size exceeded
.
You should call console.log.__rrweb_original__() instead.
You can also customize the behavior of logger like this:
import rrweb from 'rrweb';
import { getRecordConsolePlugin } from '@rrweb/rrweb-plugin-console-record';
rrweb.record({
emit: function emit(event) {
// you should use console.log in this way to avoid errors.
const defaultLog = console.log['__rrweb_original__']
? console.log['__rrweb_original__']
: console.log;
defaultLog(event);
},
// customized options
plugins: [
getRecordConsolePlugin({
level: ['info', 'log', 'warn', 'error'],
lengthThreshold: 10000,
stringifyOptions: {
stringLengthLimit: 1000,
numOfKeysLimit: 100,
depthOfLimit: 1,
},
logger: window.console,
}),
],
});
All options are described below:
key | default | description |
---|---|---|
level | ['log','warn','error',...] | Default value contains names of all console functions. You can override it by setting console levels you need. |
lengthThreshold | 1000 | Maximum number of records of console output. |
stringifyOptions | { stringLengthLimit: undefined, numOfKeysLimit: 50, depthOfLimit: 4 } | If console output includes js objects, we need to stringify them. stringLengthLimit limits the string length of single value. numOfKeysLimit limits the number of keys in an object. depthOfLimit limits the depth of object. If an object contains more keys than this limit, we would only save object's name. You can reduce the size of events by setting these options. |
logger | window.console | the console object we would record.You can set a console object from another execution environment where you would like to record. |
If recorded events include data of console log type, we will automatically play them.
import rrweb from 'rrweb';
import { getReplayConsolePlugin } from '@rrweb/rrweb-plugin-console-replay';
const replayer = new rrweb.Replayer(events, {
plugins: [
getReplayConsolePlugin({
level: ['info', 'log', 'warn', 'error'],
}),
],
});
replayer.play();
Description of replay option is as follows:
key | default | description |
---|---|---|
level | ['log','warn','error',...] | You can set this option to play levels of log you need. |
replayLogger | a console based object that implements the interface ReplayLogger | You can also set a replay logger to replay the log messages in a simulated browser console by implementing the interface ReplayLogger |