delta-component
Version:
embeddable react component
22 lines (14 loc) • 357 B
JavaScript
const Statistics = require('../../../common/logic/statistics').Statistics;
class ClientStatistics extends Statistics {
constructor(log) {
super(log);
this.log = log.child({sendToServer: true});
}
send(message) {
this.log.info(message);
}
}
module.exports = {
Statistics: ClientStatistics,
};
;