mirror of
https://github.com/Lissy93/dashy.git
synced 2026-01-13 11:21:43 +01:00
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
/* eslint no-console: ["error", { allow: ["warn", "error"] }] */
|
|
|
|
/**
|
|
* Function called when an error happens
|
|
* If you wish to use an error logging service, put code for it here
|
|
*/
|
|
const ErrorHandler = function handler(msg) {
|
|
console.warn(msg);
|
|
};
|
|
|
|
export default ErrorHandler;
|