mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
31 lines
812 B
JavaScript
31 lines
812 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
export default class Logger {
|
|
start: number;
|
|
|
|
constructor() {
|
|
this.start = Date.now();
|
|
}
|
|
|
|
// eslint-disable-next-line flowtype/no-weak-types
|
|
log(...args: any) {
|
|
Function.prototype.bind
|
|
.call(window.console.log, window.console)
|
|
.apply(
|
|
window.console,
|
|
[Date.now() - this.start + 'ms', 'html2canvas:'].concat([].slice.call(args, 0))
|
|
);
|
|
}
|
|
|
|
// eslint-disable-next-line flowtype/no-weak-types
|
|
error(...args: any) {
|
|
Function.prototype.bind
|
|
.call(window.console.error, window.console)
|
|
.apply(
|
|
window.console,
|
|
[Date.now() - this.start + 'ms', 'html2canvas:'].concat([].slice.call(args, 0))
|
|
);
|
|
}
|
|
}
|