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";
|
||||
|
||||
export default () => {
|
||||
const arr = _.values(arguments);
|
||||
arr.unshift('[Backend API]');
|
||||
console.log.apply(null, arr);
|
||||
const log = (...args) => {
|
||||
const arr = args;
|
||||
arr.unshift("[Backend API]");
|
||||
console.log(...arr);
|
||||
};
|
||||
|
||||
export default log;
|
||||
|
||||
Reference in New Issue
Block a user