mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-02-01 16:32:54 +00:00
Fix cypress logger
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
import _ from "lodash";
|
const log = (...args) => {
|
||||||
|
const arr = args;
|
||||||
export default () => {
|
arr.unshift("[Backend API]");
|
||||||
const arr = _.values(arguments);
|
console.log(...arr);
|
||||||
arr.unshift('[Backend API]');
|
|
||||||
console.log.apply(null, arr);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export default log;
|
||||||
|
|||||||
Reference in New Issue
Block a user