mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-08-27 04:09:07 +00:00
Fix cypress logger
This commit is contained in:
parent
ef7f444404
commit
7c3c59c79f
1 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue