1
0
mirror of https://github.com/NginxProxyManager/nginx-proxy-manager.git synced 2025-04-22 07:02:50 +03:00
Jamie Curnow 6ac9a82279 Major update to cypress
- Updated cypress
- Ground work for testing DNS certs in CI
2024-05-21 12:53:07 +10:00

13 lines
264 B
JavaScript

const _ = require("lodash");
const chalk = require("chalk");
module.exports = function() {
var arr = _.values(arguments);
arr.unshift(
chalk.blue.bold("[") +
chalk.yellow.bold("Backend API") +
chalk.blue.bold("]"),
);
console.log.apply(null, arr);
};